From d015cc0b48ca51a2b93b6c60c91dc352a104b1e7 Mon Sep 17 00:00:00 2001
From: kongzy <kongzy>
Date: 星期一, 23 九月 2024 10:41:50 +0800
Subject: [PATCH] 删除密码加密

---
 emergency/emergency-service/src/main/java/com/gkhy/safePlatform/emergency/entity/EmergencyPlanInfo.java |   74 +++++++++++++++++++++++-------------
 1 files changed, 47 insertions(+), 27 deletions(-)

diff --git a/emergency/emergency-service/src/main/java/com/gkhy/safePlatform/emergency/entity/EmergencyPlanInfo.java b/emergency/emergency-service/src/main/java/com/gkhy/safePlatform/emergency/entity/EmergencyPlanInfo.java
index 6c5eb1d..4fb3ac0 100644
--- a/emergency/emergency-service/src/main/java/com/gkhy/safePlatform/emergency/entity/EmergencyPlanInfo.java
+++ b/emergency/emergency-service/src/main/java/com/gkhy/safePlatform/emergency/entity/EmergencyPlanInfo.java
@@ -9,32 +9,52 @@
 @TableName("emergency_plan")
 public class EmergencyPlanInfo {
 
+    private Boolean abolishStatus;
+
+    public Boolean getAbolishStatus() {
+        return abolishStatus;
+    }
+
+    public void setAbolishStatus(Boolean abolishStatus) {
+        this.abolishStatus = abolishStatus;
+    }
+
+    private String authorName;
+
+    public String getAuthorName() {
+        return authorName;
+    }
+
+    public void setAuthorName(String authorName) {
+        this.authorName = authorName;
+    }
+
     @TableId(type = IdType.AUTO)
     private Long id;
 
-    private Byte delFlag;
+    private Boolean delFlag;
 
     private Date gmtCreate;
 
     private Date gmtModitify;
 
-    private String createUid;
+    private Long createUid;
 
-    private String updateUid;
+    private Long updateUid;
 
-    private Byte statue;
+    private Integer status;
 
     private Date releaseDate;
 
-    private String authorUid;
+    private Long authorUid;
 
     private Long authorDeptId;
 
-    private Byte associatedDanger;
+    private Boolean associatedDanger;
 
-    private String type;
+    private Byte type;
 
-    private String level;
+    private Byte level;
 
     private String name ;
 
@@ -46,11 +66,11 @@
         this.id = id;
     }
 
-    public Byte getDelFlag() {
+    public Boolean getDelFlag() {
         return delFlag;
     }
 
-    public void setDelFlag(Byte delFlag) {
+    public void setDelFlag(Boolean delFlag) {
         this.delFlag = delFlag;
     }
 
@@ -70,28 +90,28 @@
         this.gmtModitify = gmtModitify;
     }
 
-    public String getCreateUid() {
+    public Long getCreateUid() {
         return createUid;
     }
 
-    public void setCreateUid(String createUid) {
+    public void setCreateUid(Long createUid) {
         this.createUid = createUid;
     }
 
-    public String getUpdateUid() {
+    public Long getUpdateUid() {
         return updateUid;
     }
 
-    public void setUpdateUid(String updateUid) {
+    public void setUpdateUid(Long updateUid) {
         this.updateUid = updateUid;
     }
 
-    public Byte getStatue() {
-        return statue;
+    public Integer getStatus() {
+        return status;
     }
 
-    public void setStatue(Byte statue) {
-        this.statue = statue;
+    public void setStatus(Integer status) {
+        this.status = status;
     }
 
     public Date getReleaseDate() {
@@ -102,11 +122,11 @@
         this.releaseDate = releaseDate;
     }
 
-    public String getAuthorUid() {
+    public Long getAuthorUid() {
         return authorUid;
     }
 
-    public void setAuthorUid(String authorUid) {
+    public void setAuthorUid(Long authorUid) {
         this.authorUid = authorUid;
     }
 
@@ -118,27 +138,27 @@
         this.authorDeptId = authorDeptId;
     }
 
-    public Byte getAssociatedDanger() {
+    public Boolean getAssociatedDanger() {
         return associatedDanger;
     }
 
-    public void setAssociatedDanger(Byte associatedDanger) {
+    public void setAssociatedDanger(Boolean associatedDanger) {
         this.associatedDanger = associatedDanger;
     }
 
-    public String getType() {
+    public Byte getType() {
         return type;
     }
 
-    public void setType(String type) {
+    public void setType(Byte type) {
         this.type = type;
     }
 
-    public String getLevel() {
+    public Byte getLevel() {
         return level;
     }
 
-    public void setLevel(String level) {
+    public void setLevel(Byte level) {
         this.level = level;
     }
 
@@ -159,7 +179,7 @@
                 ", gmtModitify=" + gmtModitify +
                 ", createUid='" + createUid + '\'' +
                 ", updateUid='" + updateUid + '\'' +
-                ", statue=" + statue +
+                ", status=" + status +
                 ", releaseDate=" + releaseDate +
                 ", authorUid='" + authorUid + '\'' +
                 ", authorDeptId=" + authorDeptId +

--
Gitblit v1.9.2