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 | 317 +++++++++++++++++++++++++++++++++++++++++++--------- 1 files changed, 258 insertions(+), 59 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 3537573..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,44 +3,266 @@ 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 { + + // 应急演练计划 + + 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 Date drillRecordDate; + + private Long recordUserUid; + + private String processDesc; + + private List<EmergencyDrillExecuteUserRespDTO> userList; + + public Date getMakingPlanDate() { + return makingPlanDate; + } + + public void setMakingPlanDate(Date makingPlanDate) { + this.makingPlanDate = makingPlanDate; + } + + public Date getDrillPlanDate() { + return drillPlanDate; + } + + public void setDrillPlanDate(Date drillPlanDate) { + this.drillPlanDate = drillPlanDate; + } + + public Long getMakingUserUid() { + return makingUserUid; + } + + public void setMakingUserUid(Long makingUserUid) { + this.makingUserUid = makingUserUid; + } + + public Long getMakingDepartmentId() { + return makingDepartmentId; + } + + 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 String suitable; + private Byte suitable; - private String sufficient; + private Byte sufficient; - private String arrival; + private Byte arrival; - private String supplies; + private Byte supplies; - private String protection; + private Byte protection; - private String whole; + private Byte whole; - private String division; + private Byte division; - private String effect; + private Byte effect; - private String report; + private Byte report; - private String safety; + private Byte safety; - private String rescue; + private Byte rescue; - private String evacuate; + private Byte evacuate; private Boolean needModify; private String questionAndImprove; private String modifyContent; + + public Long getDrillPlanId() { + return drillPlanId; + } + + public void setDrillPlanId(Long drillPlanId) { + this.drillPlanId = drillPlanId; + } public Long getId() { return id; @@ -58,99 +280,99 @@ this.drillExecuteId = drillExecuteId; } - public String getSuitable() { + 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 + - ", drillExecuteId=" + drillExecuteId + - ", 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