From 4bb08dd0399b3d7d034e72a3748e6676e2fc0398 Mon Sep 17 00:00:00 2001
From: SZH <szh_hello@163.com>
Date: 星期五, 19 八月 2022 10:44:28 +0800
Subject: [PATCH] 修改配置文件
---
emergency/emergency-service/src/main/java/com/gkhy/safePlatform/emergency/entity/EmergencyPlanInfo.java | 38 +++++++++++++++++++++++++++++---------
1 files changed, 29 insertions(+), 9 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 3e75870..5d2944d 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,6 +9,26 @@
@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;
@@ -22,7 +42,7 @@
private Long updateUid;
- private Byte statue;
+ private Integer status;
private Date releaseDate;
@@ -30,7 +50,7 @@
private Long authorDeptId;
- private Byte associatedDanger;
+ private Boolean associatedDanger;
private String type;
@@ -86,12 +106,12 @@
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() {
@@ -118,11 +138,11 @@
this.authorDeptId = authorDeptId;
}
- public Byte getAssociatedDanger() {
+ public Boolean getAssociatedDanger() {
return associatedDanger;
}
- public void setAssociatedDanger(Byte associatedDanger) {
+ public void setAssociatedDanger(Boolean associatedDanger) {
this.associatedDanger = associatedDanger;
}
@@ -159,7 +179,7 @@
", gmtModitify=" + gmtModitify +
", createUid='" + createUid + '\'' +
", updateUid='" + updateUid + '\'' +
- ", statue=" + statue +
+ ", status=" + status +
", releaseDate=" + releaseDate +
", authorUid='" + authorUid + '\'' +
", authorDeptId=" + authorDeptId +
--
Gitblit v1.9.2