From b46815639664c65d31f6f852c4bf403f6ba0c3ea Mon Sep 17 00:00:00 2001
From: Lius <Lius2225@163.com>
Date: 星期五, 26 一月 2024 10:04:49 +0800
Subject: [PATCH] 加班管理功能调整

---
 lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/entity/EquipmentBeilvAlarm.java |   98 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 98 insertions(+), 0 deletions(-)

diff --git a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/entity/EquipmentBeilvAlarm.java b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/entity/EquipmentBeilvAlarm.java
new file mode 100644
index 0000000..cb46dcd
--- /dev/null
+++ b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/entity/EquipmentBeilvAlarm.java
@@ -0,0 +1,98 @@
+package org.jeecg.modules.mdc.entity;
+
+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.jeecgframework.poi.excel.annotation.Excel;
+import org.springframework.format.annotation.DateTimeFormat;
+
+import java.util.Date;
+
+/**
+ * @Description: 璁惧鍊嶇巼鎶ヨ
+ * @Author: jeecg-boot
+ * @Date: 2024-01-17
+ * @Version: V1.0
+ */
+@Data
+@TableName("EquipmentBeilvAlarm")
+@EqualsAndHashCode(callSuper = false)
+@Accessors(chain = true)
+@ApiModel(value = "EquipmentBeilvAlarm瀵硅薄", description = "璁惧鍊嶇巼鎶ヨ")
+public class EquipmentBeilvAlarm {
+
+    /**
+     * 璁惧缂栧彿
+     */
+    @Excel(name = "璁惧缂栧彿", width = 15)
+    @ApiModelProperty(value = "璁惧缂栧彿")
+    private String equipmentid;
+    /**
+     * 鎶ヨ鏃堕棿
+     */
+    @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 collecttime;
+    /**
+     * 璁惧畾鍊�
+     */
+    @Excel(name = "璁惧畾鍊�", width = 15)
+    @ApiModelProperty(value = "璁惧畾鍊�")
+    private String setvalue;
+    /**
+     * 瀹為檯鍊�
+     */
+    @Excel(name = "瀹為檯鍊�", width = 15)
+    @ApiModelProperty(value = "瀹為檯鍊�")
+    private String realvalue;
+    /**
+     * 鎶ヨ鍙�
+     */
+    @Excel(name = "鎶ヨ鍙�", width = 15)
+    @ApiModelProperty(value = "鎶ヨ鍙�")
+    private String alarmno;
+    /**
+     * 鎶ヨ鍐呭
+     */
+    @Excel(name = "鎶ヨ鍐呭", width = 15)
+    @ApiModelProperty(value = "鎶ヨ鍐呭")
+    private String alarmcontent;
+    /**
+     * isexamine
+     */
+    @Excel(name = "isexamine", width = 15)
+    @ApiModelProperty(value = "isexamine")
+    private Integer isexamine;
+    /**
+     * iseffective
+     */
+    @Excel(name = "iseffective", width = 15)
+    @ApiModelProperty(value = "iseffective")
+    private Integer iseffective;
+    /**
+     * examinetime
+     */
+    @Excel(name = "examinetime", 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 = "examinetime")
+    private Date examinetime;
+    /**
+     * examineperson
+     */
+    @Excel(name = "examineperson", width = 15)
+    @ApiModelProperty(value = "examineperson")
+    private String examineperson;
+    /**
+     * remark
+     */
+    @Excel(name = "澶囨敞", width = 15)
+    @ApiModelProperty(value = "澶囨敞")
+    private String remark;
+}

--
Gitblit v1.9.3