From 99d6db0aab044b740ce02f57872c1e38ae647b58 Mon Sep 17 00:00:00 2001
From: lyh <925863403@qq.com>
Date: 星期二, 29 七月 2025 19:00:50 +0800
Subject: [PATCH] 三不原则分析 中心修改 台账导入导出字段修改

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

diff --git a/lxzn-module-eam-common/src/main/java/org/jeecg/modules/eam/entity/EamThirdMaintenanceChange.java b/lxzn-module-eam-common/src/main/java/org/jeecg/modules/eam/entity/EamThirdMaintenanceChange.java
index 6636e22..f9845a3 100644
--- a/lxzn-module-eam-common/src/main/java/org/jeecg/modules/eam/entity/EamThirdMaintenanceChange.java
+++ b/lxzn-module-eam-common/src/main/java/org/jeecg/modules/eam/entity/EamThirdMaintenanceChange.java
@@ -1,5 +1,7 @@
 package org.jeecg.modules.eam.entity;
 
+import com.baomidou.mybatisplus.annotation.FieldFill;
+import com.baomidou.mybatisplus.annotation.FieldStrategy;
 import com.baomidou.mybatisplus.annotation.TableField;
 import com.baomidou.mybatisplus.annotation.TableName;
 import com.fasterxml.jackson.annotation.JsonFormat;
@@ -8,6 +10,7 @@
 import lombok.Data;
 import lombok.EqualsAndHashCode;
 import lombok.experimental.Accessors;
+import org.apache.ibatis.type.JdbcType;
 import org.jeecg.common.aspect.annotation.Dict;
 import org.jeecg.common.system.base.entity.JeecgEntity;
 import org.jeecgframework.poi.excel.annotation.Excel;
@@ -37,6 +40,18 @@
     @Excel(name = "鍒犻櫎鏍囪", width = 15)
     @ApiModelProperty(value = "鍒犻櫎鏍囪")
     private Integer delFlag;
+    /**
+     * 澶囨敞
+     */
+    @Excel(name = "澶囨敞", width = 15)
+    @ApiModelProperty(value = "澶囨敞")
+    private String remark;
+    /**
+     * 璁惧ID
+     */
+    @Excel(name = "璁惧ID", width = 15)
+    @ApiModelProperty(value = "璁惧ID")
+    private String equipmentId;
     /**
      * 涓変繚宸ュ崟ID
      */
@@ -106,7 +121,8 @@
     @Excel(name = "寤惰繜淇濆吇鏃ユ湡", width = 20, format = "yyyy-MM-dd")
     @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
     @DateTimeFormat(pattern = "yyyy-MM-dd")
-    private Date deferredMaintenanceDate;
+    @TableField(updateStrategy = FieldStrategy.IGNORED)
+    private String deferredMaintenanceDate;
     /**
      * 涓荤棰嗗绛惧瓧
      */
@@ -122,6 +138,16 @@
     @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
     @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
     private Date equipmentManagerSignatureTime;
+    /**涓荤棰嗗绛惧瓧缁撴灉*/
+    @ApiModelProperty(value = "涓荤棰嗗绛惧瓧缁撴灉")
+    @Dict(dicCode = "approve_reject")
+    private String equipmentManagerSignatureResult;
+    /**
+     * 閮ㄩ棬棰嗗鎰忚
+     */
+    @Excel(name = "涓荤棰嗗鎰忚", width = 15)
+    @ApiModelProperty(value = "涓荤棰嗗鎰忚")
+    private String equipmentManagerComment;
     /**
      * 閮ㄩ棬棰嗗绛惧瓧;鏍规嵁寤朵繚鍘熷洜绫诲瀷鍖哄垎涓嶅悓鐨勪汉瀹℃壒
      */
@@ -137,6 +163,10 @@
     @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
     @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
     private Date departManagerSignatureTime;
+    /**閮ㄩ棬棰嗗绛惧瓧缁撴灉*/
+    @ApiModelProperty(value = "閮ㄩ棬棰嗗绛惧瓧缁撴灉")
+    @Dict(dicCode = "approve_reject")
+    private String departManagerSignatureResult;
     /**
      * 閮ㄩ棬棰嗗鎰忚
      */
@@ -158,6 +188,10 @@
     @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
     @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
     private Date productionSupportSignatureTime;
+    /**鐢熶骇淇濋殰閮ㄩ瀵肩瀛楃粨鏋�*/
+    @ApiModelProperty(value = "鐢熶骇淇濋殰閮ㄩ瀵肩瀛楃粨鏋�")
+    @Dict(dicCode = "approve_reject")
+    private String productionSupportSignatureResult;
     /**
      * 鐢熶骇淇濋殰閮ㄩ瀵兼剰瑙�
      */

--
Gitblit v1.9.3