From f241a39f07acc5d5ede28b4152d74cbb84e4885b Mon Sep 17 00:00:00 2001
From: zhangfeng <1603559716@qq.com>
Date: Tue, 08 Nov 2022 08:37:36 +0800
Subject: [PATCH] 安全物资和设备管理
---
equipment/equipment-service/src/main/java/com/gkhy/safePlatform/equipment/entity/KeypointEquipmentInfo.java | 25 +++++++++++++++++++------
1 files changed, 19 insertions(+), 6 deletions(-)
diff --git a/equipment/equipment-service/src/main/java/com/gkhy/safePlatform/equipment/entity/KeypointEquipmentInfo.java b/equipment/equipment-service/src/main/java/com/gkhy/safePlatform/equipment/entity/KeypointEquipmentInfo.java
index bf930bb..406f294 100644
--- a/equipment/equipment-service/src/main/java/com/gkhy/safePlatform/equipment/entity/KeypointEquipmentInfo.java
+++ b/equipment/equipment-service/src/main/java/com/gkhy/safePlatform/equipment/entity/KeypointEquipmentInfo.java
@@ -1,14 +1,17 @@
package com.gkhy.safePlatform.equipment.entity;
+import java.sql.Timestamp;
+import com.gkhy.safePlatform.equipment.entity.BaseDomain;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
+import com.fasterxml.jackson.annotation.JsonFormat;
/**
* 重点监管装置/设备 详细信息(KeypointEquipmentInfo)表实体类
*
* @author xurui
- * @since 2022-08-09 09:39:39
+ * @since 2022-08-29 08:37:54
*/
@SuppressWarnings("serial")
@TableName("keypoint_equipment_info")
@@ -136,13 +139,13 @@
this.responsibilityPersonName = responsibilityPersonName;
}
//装置部位分类 1:关键装置 2:重点部位
- private Integer partType;
+ private Byte partType;
- public Integer getPartType() {
+ public Byte getPartType() {
return partType;
}
- public void setPartType(Integer partType) {
+ public void setPartType(Byte partType) {
this.partType = partType;
}
//检查周期
@@ -205,7 +208,6 @@
public void setScenePic(String scenePic) {
this.scenePic = scenePic;
}
-
//备注
private String memo;
@@ -216,4 +218,15 @@
public void setMemo(String memo) {
this.memo = memo;
}
-}
\ No newline at end of file
+ //是否删除 0:未删除 1:删除
+ private Integer delFlag;
+
+ public Integer getDelFlag() {
+ return delFlag;
+ }
+
+ public void setDelFlag(Integer delFlag) {
+ this.delFlag = delFlag;
+ }
+
+}
--
Gitblit v1.9.2