package com.gkhy.safePlatform.emergency.model.dto.resp;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
import java.util.List;
|
|
public class EmergencyDrillEvaluationDetailRespDTO {
|
|
// 应急预案名称
|
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;
|
}
|
//计划制定日期
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date makingPlanDate;
|
//计划演练日期
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date drillPlanDate;
|
//计划制定人uid
|
private Long makingUserUid;
|
//计划制定部门ID
|
private Long makingDepartmentId;
|
//主办部门ID
|
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 List<EmergencyDrillPlanFileRespDTO> planFileList;
|
//演练计划人员列表
|
private List<EmergencyDrillPlanUserRespDTO> planUserList;
|
//演练计划负责人人员列表
|
private List<EmergencyDrillPlanUserRespDTO> planChargeUserList;
|
|
public List<EmergencyDrillPlanUserRespDTO> getPlanChargeUserList() {
|
return planChargeUserList;
|
}
|
|
public void setPlanChargeUserList(List<EmergencyDrillPlanUserRespDTO> planChargeUserList) {
|
this.planChargeUserList = planChargeUserList;
|
}
|
|
// 应急演练实施
|
|
//记录人名称
|
private String recordUserName;
|
|
public String getRecordUserName() {
|
return recordUserName;
|
}
|
|
public void setRecordUserName(String recordUserName) {
|
this.recordUserName = recordUserName;
|
}
|
//演练计划id
|
private Long drillPlanId;
|
//演练记录时间
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date drillRecordDate;
|
//记录人uid
|
private Long recordUserUid;
|
//演练过程描述
|
private String processDesc;
|
//演练计划实施人员列表
|
private List<EmergencyDrillExecuteUserRespDTO> executeUserList;
|
|
// 评价id
|
private Long id;
|
//演练实施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;
|
//是否需要修改应急预案:0否1是
|
private Boolean needModify;
|
//存在问题和改进措施
|
private String questionAndImprove;
|
//修改内容
|
private String modifyContent;
|
//评价文件列表
|
private List<EmergencyDrillEvaluationFileRespDTO> evaluationFileList;
|
//评价人员列表
|
private List<EmergencyDrillEvaluationUserRespDTO> evaluationUserList;
|
|
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 List<EmergencyDrillPlanFileRespDTO> getPlanFileList() {
|
return planFileList;
|
}
|
|
public void setPlanFileList(List<EmergencyDrillPlanFileRespDTO> planFileList) {
|
this.planFileList = planFileList;
|
}
|
|
public List<EmergencyDrillPlanUserRespDTO> getPlanUserList() {
|
return planUserList;
|
}
|
|
public void setPlanUserList(List<EmergencyDrillPlanUserRespDTO> planUserList) {
|
this.planUserList = planUserList;
|
}
|
|
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> getExecuteUserList() {
|
return executeUserList;
|
}
|
|
public void setExecuteUserList(List<EmergencyDrillExecuteUserRespDTO> executeUserList) {
|
this.executeUserList = executeUserList;
|
}
|
|
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;
|
}
|
|
public List<EmergencyDrillEvaluationFileRespDTO> getEvaluationFileList() {
|
return evaluationFileList;
|
}
|
|
public void setEvaluationFileList(List<EmergencyDrillEvaluationFileRespDTO> evaluationFileList) {
|
this.evaluationFileList = evaluationFileList;
|
}
|
|
public List<EmergencyDrillEvaluationUserRespDTO> getEvaluationUserList() {
|
return evaluationUserList;
|
}
|
|
public void setEvaluationUserList(List<EmergencyDrillEvaluationUserRespDTO> evaluationUserList) {
|
this.evaluationUserList = evaluationUserList;
|
}
|
|
public Long getDrillPlanId() {
|
return drillPlanId;
|
}
|
|
public void setDrillPlanId(Long drillPlanId) {
|
this.drillPlanId = drillPlanId;
|
}
|
}
|