| | |
| | | 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 Date makingPlanDate; |
| | | |
| | | private Date drillPlanDate; |
| | | |
| | | private Long makingUserUid; |
| | | |
| | | private Long makingDepartmentId; |
| | | |
| | | private Long departmentId; |
| | | |
| | | private BigDecimal drillExpense; |
| | | |
| | | private String drillLevel; |
| | | |
| | | private String drillAddress; |
| | | |
| | | private String drillName; |
| | | |
| | | private String drillWay; |
| | | |
| | | private String insuranceMeasures; |
| | | |
| | | private String remark; |
| | | |
| | | private String purpose; |
| | | |
| | | // 应急演练实施 |
| | | 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 String getDrillLevel() { |
| | | return drillLevel; |
| | | } |
| | | |
| | | public void setDrillLevel(String 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 String getDrillWay() { |
| | | return drillWay; |
| | | } |
| | | |
| | | public void setDrillWay(String 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; |
| | | |
| | |
| | | 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 + '\'' + |
| | | '}'; |
| | | public Long getDrillPlanId() { |
| | | return drillPlanId; |
| | | } |
| | | |
| | | public void setDrillPlanId(Long drillPlanId) { |
| | | this.drillPlanId = drillPlanId; |
| | | } |
| | | } |