From 042c5d8753bf8f7b1cb0b7d23400352989ba9915 Mon Sep 17 00:00:00 2001
From: zenglf <18502938215@163.com>
Date: 星期二, 10 十月 2023 00:25:12 +0800
Subject: [PATCH] application-test.yml 测试配置文件数据库地址修改

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

diff --git a/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/entity/Equipment.java b/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/entity/Equipment.java
index 604e31b..4148c77 100644
--- a/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/entity/Equipment.java
+++ b/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/entity/Equipment.java
@@ -32,8 +32,9 @@
 @Accessors(chain = true)
 @EqualsAndHashCode(callSuper = false)
 @ApiModel(value="mom_eam_equipment瀵硅薄", description="mom_eam_equipment")
-public class Equipment  implements Serializable {
+public class Equipment implements Serializable {
     private static final long serialVersionUID = 1L;
+
     private String id;
 	/**璁惧缂栫爜*/
 	@Excel(name = "缁熶竴缂栫爜", width = 15,orderNum = "0")
@@ -297,5 +298,35 @@
     private List<EquipmentProcessParameters> processEditTableList;
     @TableField(exist = false)
     private List<EquipmentPrecisionParameters> precisionEditTableList;
-
+    @Dict(dicCode = "id",dictTable = "mom_base_factory_model",dicText = "name")
+    @Excel(width = 15,dicCode = "id",dictTable = "mom_base_factory_model",dicText = "name",orderNum = "39", name = "杞﹂棿")
+    private String factoryModelId;
+    @Excel(width = 15,dicCode = "id",dictTable = "mom_base_work_center",dicText = "name",name = "浜х嚎",orderNum = "40")
+    @Dict(dicCode = "id",dictTable = "mom_base_work_center",dicText = "name")
+    private String workCenterId;
+    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
+    @Excel(name = "璐ㄤ繚寮�濮嬫棩鏈�", width = 15,orderNum = "37",format = "yyyy-MM-dd")
+    @DateTimeFormat(pattern="yyyy-MM-dd")
+    private Date warrantyStart;
+    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
+    @Excel(name = "璐ㄤ繚缁撴潫鏃ユ湡", width = 15,orderNum = "38",format = "yyyy-MM-dd")
+    @DateTimeFormat(pattern="yyyy-MM-dd")
+    private Date warrantyEnd;
+    @Dict(dicCode = "property_status")
+    @Excel(width = 15,orderNum = "41",dicCode = "property_status",name = "璧勪骇鐘舵��")
+    private String 	propertyStatus;
+    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
+    @DateTimeFormat(pattern="yyyy-MM-dd")
+    @TableField(exist = false)
+    private Date newStart;
+    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
+    @DateTimeFormat(pattern="yyyy-MM-dd")
+    @TableField(exist = false)
+    private Date newEnd;
+    @TableField(exist = false)
+    private String newABCTag;
+    @TableField(exist = false)
+    List<EquipmentSpares> equipmentSparesList;
+    @TableField(exist = false)
+    private String equipmentCategoryUda1;
 }

--
Gitblit v1.9.3