From 23855599412c4d61b38d78f0f3abd3430a48b5b1 Mon Sep 17 00:00:00 2001
From: zhangherong <571457620@qq.com>
Date: 星期三, 25 六月 2025 11:51:38 +0800
Subject: [PATCH] Merge branch 'mdc_hyjs_master'

---
 lxzn-module-eam-common/src/main/java/org/jeecg/modules/eam/entity/EamReportRepair.java |  121 ++++++++++++++++++++++++++++++++++++++++
 1 files changed, 121 insertions(+), 0 deletions(-)

diff --git a/lxzn-module-eam-common/src/main/java/org/jeecg/modules/eam/entity/EamReportRepair.java b/lxzn-module-eam-common/src/main/java/org/jeecg/modules/eam/entity/EamReportRepair.java
new file mode 100644
index 0000000..f0e3429
--- /dev/null
+++ b/lxzn-module-eam-common/src/main/java/org/jeecg/modules/eam/entity/EamReportRepair.java
@@ -0,0 +1,121 @@
+package org.jeecg.modules.eam.entity;
+
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.experimental.Accessors;
+import org.jeecg.common.api.vo.FileUploadResult;
+import org.jeecg.common.aspect.annotation.Dict;
+import org.jeecg.common.system.base.entity.JeecgEntity;
+import org.jeecgframework.poi.excel.annotation.Excel;
+import org.springframework.format.annotation.DateTimeFormat;
+
+import java.io.Serializable;
+import java.util.Date;
+import java.util.List;
+
+/**
+ * @Description: 鏁呴殰鎶ヤ慨
+ * @Author: Lius
+ * @Date: 2025-04-01
+ */
+@Data
+@TableName("eam_report_repair")
+@EqualsAndHashCode(callSuper = false)
+@Accessors(chain = true)
+@ApiModel(value = "eam_report_repair瀵硅薄", description = "鏁呴殰鎶ヤ慨")
+public class EamReportRepair extends JeecgEntity implements Serializable {
+
+	private static final long serialVersionUID = 3966250456529614720L;
+
+    /**
+     * 璁惧ID
+     */
+    @Excel(name = "璁惧ID", width = 15, dictTable = "eam_equipment", dicCode = "id", dicText = "equipment_code")
+    @ApiModelProperty(value = "璁惧ID")
+//    @Dict(dictTable = "eam_equipment", dicCode = "id", dicText = "equipment_code")
+    private String equipmentId;
+    /**
+     * 璁惧鍚嶇О
+     */
+    @Excel(name = "璁惧鍚嶇О", width = 15)
+    @TableField(exist = false)
+    @ApiModelProperty(value = "璁惧鍚嶇О")
+    private String equipmentName;
+    /**
+     * 鍒犻櫎鏍囪
+     */
+    @ApiModelProperty(value = "鍒犻櫎鏍囪")
+    @Dict(dicCode = "del_flag")
+    private Integer delFlag;
+    /**
+     * 鏁呴殰寮�濮嬫椂闂�
+     */
+    @ApiModelProperty(value = "鏁呴殰寮�濮嬫椂闂�")
+    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
+    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+    @Excel(name = "鏁呴殰寮�濮嬫椂闂�", width = 15, format = "yyyy-MM-dd HH:mm:ss")
+    private Date faultStartTime;
+    /**
+     * 鏄惁鍋滄満
+     */
+    @Excel(name = "鏄惁鍋滄満", width = 15, dicCode = "breakdown_flag")
+    @ApiModelProperty(value = "鏄惁鍋滄満")
+    @Dict(dicCode = "breakdown_flag")
+    private String breakdownFlag;
+    /**
+     * 鏁呴殰绠�绉�
+     */
+    @Excel(name = "鏁呴殰绠�绉�", width = 15)
+    @ApiModelProperty(value = "鏁呴殰绠�绉�")
+    private String faultName;
+    /**
+     * 鏁呴殰鍒嗙被
+     */
+    @Excel(name = "鏁呴殰鍒嗙被", width = 15, dicCode = "fault_reason_category")
+    @ApiModelProperty(value = "鏁呴殰鍒嗙被")
+    @Dict(dicCode = "fault_reason_category")
+    private String faultType;
+    /**
+     * 鏁呴殰鎻忚堪
+     */
+    @Excel(name = "鏁呴殰鎻忚堪", width = 15)
+    @ApiModelProperty(value = "鏁呴殰鎻忚堪")
+    private String faultDescription;
+    /**
+     * 鎶ヤ慨鐘舵��
+     */
+    @Excel(name = "鎶ヤ慨鐘舵��", width = 15, dicCode = "report_repair_status")
+    @ApiModelProperty(value = "鎶ヤ慨鐘舵��")
+    @Dict(dicCode = "report_repair_status")
+    private String reportStatus;
+    /**
+     * 鐓х墖鏂囦欢ids;id浠ラ�楀彿鍒嗛殧
+     */
+    @Excel(name = "鐓х墖", width = 15, type = 2)
+    @ApiModelProperty(value = "鐓х墖")
+    private String imageFiles;
+
+    /**鐓х墖*/
+    @ApiModelProperty(value = "鐓х墖")
+    @TableField(exist = false)
+    private List<FileUploadResult> imageFilesResult;
+
+    /**
+     * 澶囨敞
+     */
+    @Excel(name = "澶囨敞", width = 15)
+    @ApiModelProperty(value = "澶囨敞")
+    private String remark;
+
+    //鍒楄〃灞曠ず
+    @TableField(exist = false)
+    private String equipmentCode;
+    @TableField(exist = false)
+    private String installationPosition;
+
+}

--
Gitblit v1.9.3