package com.gkhy.safePlatform.emergency.entity; 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 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 getUserList() { return userList; } public void setUserList(List 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 getDrillPlanId() { return drillPlanId; } public void setDrillPlanId(Long drillPlanId) { this.drillPlanId = drillPlanId; } 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(Byte suitable) { this.suitable = suitable; } public Byte getSufficient() { return sufficient; } public void setSufficient(Byte sufficient) { this.sufficient = sufficient; } public Byte getArrival() { return arrival; } public void setArrival(Byte arrival) { this.arrival = arrival; } public Byte getSupplies() { return supplies; } public void setSupplies(Byte supplies) { this.supplies = supplies; } public Byte getProtection() { return protection; } public void setProtection(Byte protection) { this.protection = protection; } public Byte getWhole() { return whole; } public void setWhole(Byte whole) { this.whole = whole; } public Byte getDivision() { return division; } public void setDivision(Byte division) { this.division = division; } public Byte getEffect() { return effect; } public void setEffect(Byte effect) { this.effect = effect; } public Byte getReport() { return report; } public void setReport(Byte report) { this.report = report; } public Byte getSafety() { return safety; } public void setSafety(Byte safety) { this.safety = safety; } public Byte getRescue() { return rescue; } public void setRescue(Byte rescue) { this.rescue = rescue; } public Byte getEvacuate() { return evacuate; } public void setEvacuate(Byte evacuate) { this.evacuate = evacuate; } public Boolean getNeedModify() { return needModify; } public void setNeedModify(Boolean needModify) { this.needModify = needModify; } public String getQuestionAndImprove() { return questionAndImprove; } public void setQuestionAndImprove(String questionAndImprove) { this.questionAndImprove = questionAndImprove; } public String getModifyContent() { return modifyContent; } public void setModifyContent(String modifyContent) { this.modifyContent = modifyContent; } }