From 9f1304e6fddd17f5fe5461ce677f3ec191331ccc Mon Sep 17 00:00:00 2001
From: lius <Lius2225@163.com>
Date: 星期五, 01 九月 2023 11:48:07 +0800
Subject: [PATCH] update

---
 lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/entity/MdcEquipmentOvertime.java |   84 ++++++++++++++++++++++++++++++++++--------
 1 files changed, 68 insertions(+), 16 deletions(-)

diff --git a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/entity/MdcEquipmentOvertime.java b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/entity/MdcEquipmentOvertime.java
index 8e07728..9bd4ba0 100644
--- a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/entity/MdcEquipmentOvertime.java
+++ b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/entity/MdcEquipmentOvertime.java
@@ -1,5 +1,6 @@
 package org.jeecg.modules.mdc.entity;
 
+import com.baomidou.mybatisplus.annotation.TableField;
 import com.baomidou.mybatisplus.annotation.TableName;
 import com.fasterxml.jackson.annotation.JsonFormat;
 import io.swagger.annotations.ApiModel;
@@ -12,6 +13,8 @@
 import org.springframework.format.annotation.DateTimeFormat;
 
 import java.io.Serializable;
+import java.util.Date;
+import java.util.List;
 
 /**
  * @Description: 璁惧鍔犵彮绠$悊
@@ -29,32 +32,81 @@
     private static final long serialVersionUID = -7163039765166584824L;
 
     /**
-     * 璁惧缂栫爜
+     * 宸ヤ綔鏃ュ巻id
      */
-    @Excel(name = "璁惧缂栫爜", width = 15)
-    @ApiModelProperty(value = "璁惧缂栫爜")
+    @ApiModelProperty(value = "宸ヤ綔鏃ュ巻id")
+    private String calendarId;
+
+    /**
+     * 鍔犵彮寮�濮嬫椂闂�
+     */
+    @Excel(name = "鍔犵彮寮�濮嬫椂闂�", width = 20, format = "yyyy-MM-dd HH:mm:ss")
+    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
+    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+    @ApiModelProperty(value = "鍔犵彮寮�濮嬫椂闂�")
+    private Date startTime;
+    /**
+     * 鍔犵彮缁撴潫鏃堕棿
+     */
+    @Excel(name = "鍔犵彮缁撴潫鏃堕棿", width = 20, format = "yyyy-MM-dd HH:mm:ss")
+    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
+    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+    @ApiModelProperty(value = "鍔犵彮缁撴潫鏃堕棿")
+    private Date endTime;
+
+    /**
+     * 澶囨敞
+     */
+    @Excel(name = "澶囨敞")
+    @ApiModelProperty(value = "澶囨敞")
+    private String remark;
+
+    @TableField(exist = false)
     private String equipmentId;
+
+    @TableField(exist = false)
+    private String equipmentName;
+
     /**
      * 鐢熸晥鏃ユ湡
      */
     @Excel(name = "鐢熸晥鏃ユ湡", width = 15)
-    @ApiModelProperty(value = "鐢熸晥鏃ユ湡")
+    @TableField(exist = false)
     private String effectiveDate;
+
     /**
-     * 寮�濮嬫椂闂�
+     * 鐝寮�濮嬫椂闂�
      */
-    @Excel(name = "寮�濮嬫椂闂�", width = 20, format = "yyyy-MM-dd HH:mm:ss")
-    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
-    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
-    @ApiModelProperty(value = "寮�濮嬫椂闂�")
-    private java.util.Date startTime;
+    @Excel(name = "鐝寮�濮嬫椂闂�", width = 20, format = "yyyy-MM-dd HH:mm:ss")
+    @ApiModelProperty("鐝寮�濮嬫椂闂�")
+    private String startDate;
+
     /**
-     * 缁撴潫鏃堕棿
+     * 鐝缁撴潫鏃堕棿
      */
-    @Excel(name = "缁撴潫鏃堕棿", width = 20, format = "yyyy-MM-dd HH:mm:ss")
-    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
-    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
-    @ApiModelProperty(value = "缁撴潫鏃堕棿")
-    private java.util.Date endTime;
+    @Excel(name = "鐝缁撴潫鏃堕棿", width = 20, format = "yyyy-MM-dd HH:mm:ss")
+    @ApiModelProperty("鐝缁撴潫鏃堕棿")
+    private String endDate;
+
+    /**
+     * 鍓嶅彴浼犲叆 鍒ゆ柇姣忎釜id
+     */
+    @TableField(exist = false)
+    private String parentId;
+
+    /**
+     * 鍓嶅彴浼犲叆 杞﹂棿灞傜骇:1 閮ㄩ棬灞傜骇:2
+     */
+    @TableField(exist = false)
+    private String typeTree;
+
+    /**
+     * 閮ㄩ棬parentId 鍏宠仈瀛愰泦id
+     */
+    @TableField(exist = false)
+    private List<String> mdcSectionIds;
+
+    @TableField(exist = false)
+    private String equipmentIds;
 
 }

--
Gitblit v1.9.3