emergency/emergency-service/src/main/java/com/gkhy/safePlatform/emergency/query/EmergencyPlanQuery.java
@@ -2,6 +2,7 @@ public class EmergencyPlanQuery { //废止状态 0:未废止 1:已废止 private Boolean abolishStatus; public Boolean getAbolishStatus() { @@ -12,9 +13,10 @@ this.abolishStatus = abolishStatus; } //预案名称 private String name ; private String type ; //预案类型 private Byte type ; public String getName() { return name; @@ -24,11 +26,11 @@ this.name = name; } public String getType() { public Byte getType() { return type; } public void setType(String type) { public void setType(Byte type) { this.type = type; } }