From 53e1e15513dbc648bd87b2c62cf361f72ae1f176 Mon Sep 17 00:00:00 2001
From: qushaowei <qushaowei@163.com>
Date: 星期二, 05 九月 2023 17:09:21 +0800
Subject: [PATCH] 保养移交单  精度检验单

---
 lxzn-module-eam/src/main/java/org/jeecg/modules/eam/entity/PrecisionInspection.java |   15 +++++++++------
 1 files changed, 9 insertions(+), 6 deletions(-)

diff --git a/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/entity/PrecisionInspection.java b/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/entity/PrecisionInspection.java
index a409c05..b8210be 100644
--- a/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/entity/PrecisionInspection.java
+++ b/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/entity/PrecisionInspection.java
@@ -4,12 +4,12 @@
 import java.io.UnsupportedEncodingException;
 import java.util.Date;
 import java.math.BigDecimal;
-import com.baomidou.mybatisplus.annotation.IdType;
-import com.baomidou.mybatisplus.annotation.TableId;
-import com.baomidou.mybatisplus.annotation.TableName;
-import com.baomidou.mybatisplus.annotation.TableLogic;
+import java.util.List;
+
+import com.baomidou.mybatisplus.annotation.*;
 import lombok.Data;
 import com.fasterxml.jackson.annotation.JsonFormat;
+import org.jeecg.common.constant.CommonConstant;
 import org.springframework.format.annotation.DateTimeFormat;
 import org.jeecgframework.poi.excel.annotation.Excel;
 import org.jeecg.common.aspect.annotation.Dict;
@@ -91,7 +91,7 @@
 	/**璁惧鍒ゅ畾缁撴灉*/
 	@Excel(name = "璁惧鍒ゅ畾缁撴灉", width = 15)
     @ApiModelProperty(value = "璁惧鍒ゅ畾缁撴灉")
-    private Integer judgmentResult;
+    private String judgmentResult;
 	/**澶囨敞*/
 	@Excel(name = "澶囨敞", width = 15)
     @ApiModelProperty(value = "澶囨敞")
@@ -120,9 +120,12 @@
 	@Excel(name = "delFlag", width = 15)
     @ApiModelProperty(value = "delFlag")
     @TableLogic
-    private Integer delFlag;
+    private Integer delFlag = CommonConstant.DEL_FLAG_0;
 	/**璁惧妫�楠屽憳绛惧瓧锛堢洊绔狅級*/
 	@Excel(name = "璁惧妫�楠屽憳绛惧瓧锛堢洊绔狅級", width = 15)
     @ApiModelProperty(value = "璁惧妫�楠屽憳绛惧瓧锛堢洊绔狅級")
     private String equipmentInspectorSignUser;
+
+    @TableField(exist = false)
+    private List<PrecisionInspectionDetail> precisionInspectionDetailList;
 }

--
Gitblit v1.9.3