From a8ddac646d5129e9818ea82f404d0c0a8d2bc239 Mon Sep 17 00:00:00 2001
From: Lius <Lius2225@163.com>
Date: 星期四, 09 十一月 2023 10:39:25 +0800
Subject: [PATCH] 设备参数阈值管理接口
---
lxzn-module-eam/src/main/java/org/jeecg/modules/eam/entity/InspectionCycle.java | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 48 insertions(+), 0 deletions(-)
diff --git a/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/entity/InspectionCycle.java b/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/entity/InspectionCycle.java
index 231ab36..7db1f5b 100644
--- a/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/entity/InspectionCycle.java
+++ b/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/entity/InspectionCycle.java
@@ -13,6 +13,7 @@
import org.jeecg.common.constant.CommonConstant;
import org.jeecg.common.system.base.entity.JeecgEntity;
import org.jeecgframework.poi.excel.annotation.Excel;
+import org.springframework.format.annotation.DateTimeFormat;
import java.io.Serializable;
import java.math.BigDecimal;
@@ -53,6 +54,11 @@
@ApiModelProperty(value = "棣栨鐐规鏃堕棿")
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
private Date firstInspectionTime;
+ /**涓婃鐐规鏃堕棿*/
+ @Excel(name = "涓婃鐐规鏃堕棿", width = 15)
+ @ApiModelProperty(value = "涓婃鐐规鏃堕棿")
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
+ private Date lastInspectionTime;
/**鎻愬墠鏃堕棿*/
@Excel(name = "鎻愬墠鏃堕棿", width = 15)
@ApiModelProperty(value = "鎻愬墠鏃堕棿")
@@ -133,4 +139,46 @@
@ApiModelProperty(value = "渚濇嵁鏃ュ巻")
private String accordingCalendar;
+ /**
+ * 鐢熸晥鏃堕棿
+ */
+ @ApiModelProperty(value = "鐢熸晥鏃堕棿")
+ @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")
+ private java.util.Date takeEffectTime;
+
+ /**
+ * 澶辨晥鏃堕棿
+ */
+ @ApiModelProperty(value = "澶辨晥鏃堕棿")
+ @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")
+ private java.util.Date loseEfficacyTime;
+
+ @TableField(exist = false)
+ private String equipmentId;
+ @TableField(exist = false)
+ private String teamId;
+ @TableField(exist = false)
+ private String inspectionStandardId;
+ @TableField(exist = false)
+ private String inspectionStandardNum;
+ @TableField(exist = false)
+ private String inspectionProjectId;
+ @TableField(exist = false)
+ private String inspectionProjectName;
+ @TableField(exist = false)
+ private String detectionStandard;
+ @TableField(exist = false)
+ private String inspectionStandardDetailId;
+ @TableField(exist = false)
+ private String location;
+ @TableField(exist = false)
+ private String photo;
+ @TableField(exist = false)
+ private String inspectionMethod;
+
+
}
--
Gitblit v1.9.3