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/EmergencyDrillEvaluationInfoDetailDO.java | 337 ++++++++++++++++++++++++++++++++++++++++++++----------- 1 files changed, 268 insertions(+), 69 deletions(-) diff --git a/emergency/emergency-service/src/main/java/com/gkhy/safePlatform/emergency/entity/EmergencyDrillEvaluationInfoDetailDO.java b/emergency/emergency-service/src/main/java/com/gkhy/safePlatform/emergency/entity/EmergencyDrillEvaluationInfoDetailDO.java index f82864b..e4dcec2 100644 --- a/emergency/emergency-service/src/main/java/com/gkhy/safePlatform/emergency/entity/EmergencyDrillEvaluationInfoDetailDO.java +++ b/emergency/emergency-service/src/main/java/com/gkhy/safePlatform/emergency/entity/EmergencyDrillEvaluationInfoDetailDO.java @@ -3,52 +3,258 @@ import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; +import com.gkhy.safePlatform.emergency.model.dto.resp.EmergencyDrillExecuteUserRespDTO; + +import java.math.BigDecimal; +import java.util.Date; +import java.util.List; @TableName("emergency_drill_evaluation") public class EmergencyDrillEvaluationInfoDetailDO { - @TableId(type = IdType.AUTO) - private Long id; + + // 应急演练计划 + + private String emergencyPlanName; + + private String makingUserName; + + public String getEmergencyPlanName() { + return emergencyPlanName; + } + + public void setEmergencyPlanName(String emergencyPlanName) { + this.emergencyPlanName = emergencyPlanName; + } + + public String getMakingUserName() { + return makingUserName; + } + + public void setMakingUserName(String makingUserName) { + this.makingUserName = makingUserName; + } + + private Date makingPlanDate; + + private Date drillPlanDate; + + private Long makingUserUid; + + private Long makingDepartmentId; + + private Long departmentId; + + private BigDecimal drillExpense; + + private Byte drillLevel; + + private String drillAddress; + + private String drillName; + + private Byte drillWay; + + private String insuranceMeasures; + + private String remark; + + private String purpose; + + // 应急演练实施 + + private String recordUserName; + + + public String getRecordUserName() { + return recordUserName; + } + + public void setRecordUserName(String recordUserName) { + this.recordUserName = recordUserName; + } private Long drillPlanId; - private String suitable; + private Date drillRecordDate; - private String sufficient; + private Long recordUserUid; - private String arrival; + private String processDesc; - private String supplies; + private List<EmergencyDrillExecuteUserRespDTO> userList; - private String protection; + public Date getMakingPlanDate() { + return makingPlanDate; + } - private String whole; + public void setMakingPlanDate(Date makingPlanDate) { + this.makingPlanDate = makingPlanDate; + } - private String division; + public Date getDrillPlanDate() { + return drillPlanDate; + } - private String effect; + public void setDrillPlanDate(Date drillPlanDate) { + this.drillPlanDate = drillPlanDate; + } - private String report; + public Long getMakingUserUid() { + return makingUserUid; + } - private String safety; + public void setMakingUserUid(Long makingUserUid) { + this.makingUserUid = makingUserUid; + } - private String rescue; + public Long getMakingDepartmentId() { + return makingDepartmentId; + } - private String evacuate; + public void setMakingDepartmentId(Long makingDepartmentId) { + this.makingDepartmentId = makingDepartmentId; + } + + public Long getDepartmentId() { + return departmentId; + } + + public void setDepartmentId(Long departmentId) { + this.departmentId = departmentId; + } + + public BigDecimal getDrillExpense() { + return drillExpense; + } + + public void setDrillExpense(BigDecimal drillExpense) { + this.drillExpense = drillExpense; + } + + public Byte getDrillLevel() { + return drillLevel; + } + + public void setDrillLevel(Byte drillLevel) { + this.drillLevel = drillLevel; + } + + public String getDrillAddress() { + return drillAddress; + } + + public void setDrillAddress(String drillAddress) { + this.drillAddress = drillAddress; + } + + public String getDrillName() { + return drillName; + } + + public void setDrillName(String drillName) { + this.drillName = drillName; + } + + public Byte getDrillWay() { + return drillWay; + } + + public void setDrillWay(Byte drillWay) { + this.drillWay = drillWay; + } + + public String getInsuranceMeasures() { + return insuranceMeasures; + } + + public void setInsuranceMeasures(String insuranceMeasures) { + this.insuranceMeasures = insuranceMeasures; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getPurpose() { + return purpose; + } + + public void setPurpose(String purpose) { + this.purpose = purpose; + } + + public Date getDrillRecordDate() { + return drillRecordDate; + } + + public void setDrillRecordDate(Date drillRecordDate) { + this.drillRecordDate = drillRecordDate; + } + + public Long getRecordUserUid() { + return recordUserUid; + } + + public void setRecordUserUid(Long recordUserUid) { + this.recordUserUid = recordUserUid; + } + + public String getProcessDesc() { + return processDesc; + } + + public void setProcessDesc(String processDesc) { + this.processDesc = processDesc; + } + + public List<EmergencyDrillExecuteUserRespDTO> getUserList() { + return userList; + } + + public void setUserList(List<EmergencyDrillExecuteUserRespDTO> userList) { + this.userList = userList; + } + + // 评价 + @TableId(type = IdType.AUTO) + private Long id; + + private Long drillExecuteId; + + private Byte suitable; + + private Byte sufficient; + + private Byte arrival; + + private Byte supplies; + + private Byte protection; + + private Byte whole; + + private Byte division; + + private Byte effect; + + private Byte report; + + private Byte safety; + + private Byte rescue; + + private Byte evacuate; private Boolean needModify; private String questionAndImprove; private String modifyContent; - - public Long getId() { - return id; - } - - public void setId(Long id) { - this.id = id; - } public Long getDrillPlanId() { return drillPlanId; @@ -58,99 +264,115 @@ this.drillPlanId = drillPlanId; } - public String getSuitable() { + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public Long getDrillExecuteId() { + return drillExecuteId; + } + + public void setDrillExecuteId(Long drillExecuteId) { + this.drillExecuteId = drillExecuteId; + } + + public Byte getSuitable() { return suitable; } - public void setSuitable(String suitable) { + public void setSuitable(Byte suitable) { this.suitable = suitable; } - public String getSufficient() { + public Byte getSufficient() { return sufficient; } - public void setSufficient(String sufficient) { + public void setSufficient(Byte sufficient) { this.sufficient = sufficient; } - public String getArrival() { + public Byte getArrival() { return arrival; } - public void setArrival(String arrival) { + public void setArrival(Byte arrival) { this.arrival = arrival; } - public String getSupplies() { + public Byte getSupplies() { return supplies; } - public void setSupplies(String supplies) { + public void setSupplies(Byte supplies) { this.supplies = supplies; } - public String getProtection() { + public Byte getProtection() { return protection; } - public void setProtection(String protection) { + public void setProtection(Byte protection) { this.protection = protection; } - public String getWhole() { + public Byte getWhole() { return whole; } - public void setWhole(String whole) { + public void setWhole(Byte whole) { this.whole = whole; } - public String getDivision() { + public Byte getDivision() { return division; } - public void setDivision(String division) { + public void setDivision(Byte division) { this.division = division; } - public String getEffect() { + public Byte getEffect() { return effect; } - public void setEffect(String effect) { + public void setEffect(Byte effect) { this.effect = effect; } - public String getReport() { + public Byte getReport() { return report; } - public void setReport(String report) { + public void setReport(Byte report) { this.report = report; } - public String getSafety() { + public Byte getSafety() { return safety; } - public void setSafety(String safety) { + public void setSafety(Byte safety) { this.safety = safety; } - public String getRescue() { + public Byte getRescue() { return rescue; } - public void setRescue(String rescue) { + public void setRescue(Byte rescue) { this.rescue = rescue; } - public String getEvacuate() { + public Byte getEvacuate() { return evacuate; } - public void setEvacuate(String evacuate) { + public void setEvacuate(Byte evacuate) { this.evacuate = evacuate; } @@ -176,28 +398,5 @@ public void setModifyContent(String modifyContent) { this.modifyContent = modifyContent; - } - - @Override - public String toString() { - return "EmergencyDrillEvaluationInfo{" + - "id=" + id + - ", drillPlanId=" + drillPlanId + - ", suitable='" + suitable + '\'' + - ", sufficient='" + sufficient + '\'' + - ", arrival='" + arrival + '\'' + - ", supplies='" + supplies + '\'' + - ", protection='" + protection + '\'' + - ", whole='" + whole + '\'' + - ", division='" + division + '\'' + - ", effect='" + effect + '\'' + - ", report='" + report + '\'' + - ", safety='" + safety + '\'' + - ", rescue='" + rescue + '\'' + - ", evacuate='" + evacuate + '\'' + - ", needModify=" + needModify + - ", questionAndImprove='" + questionAndImprove + '\'' + - ", modifyContent='" + modifyContent + '\'' + - '}'; } } -- Gitblit v1.9.2