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/EmergencyPlanInfoPageDO.java | 33 +++++++++++++++++++++++++++------ 1 files changed, 27 insertions(+), 6 deletions(-) diff --git a/emergency/emergency-service/src/main/java/com/gkhy/safePlatform/emergency/entity/EmergencyPlanInfoPageDO.java b/emergency/emergency-service/src/main/java/com/gkhy/safePlatform/emergency/entity/EmergencyPlanInfoPageDO.java index 7f74cb5..f7303a3 100644 --- a/emergency/emergency-service/src/main/java/com/gkhy/safePlatform/emergency/entity/EmergencyPlanInfoPageDO.java +++ b/emergency/emergency-service/src/main/java/com/gkhy/safePlatform/emergency/entity/EmergencyPlanInfoPageDO.java @@ -8,15 +8,36 @@ @TableName("emergency_plan") public class EmergencyPlanInfoPageDO { + private String authorName; + + public String getAuthorName() { + return authorName; + } + + public void setAuthorName(String authorName) { + this.authorName = authorName; + } + + private Boolean abolishStatus; + + + public Boolean getAbolishStatus() { + return abolishStatus; + } + + public void setAbolishStatus(Boolean abolishStatus) { + this.abolishStatus = abolishStatus; + } + private Long id; private String name ; private Integer status ; - private String type; + private Byte type; - private String level; + private Byte level; @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") private Date releaseDate; @@ -45,19 +66,19 @@ this.status = status; } - 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; } -- Gitblit v1.9.2