package com.gkhy.safePlatform.emergency.model.dto.req;
|
|
import com.gkhy.safePlatform.emergency.model.dto.resp.EmergencyDrillEvaluationFileRespDTO;
|
import com.gkhy.safePlatform.emergency.model.dto.resp.EmergencyDrillEvaluationUserRespDTO;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
import java.util.List;
|
|
public class EmergencyDrillEvaluationReqDTO {
|
|
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<EmergencyDrillEvaluationFileReqDTO> fileList;
|
//人员列表
|
private List<EmergencyDrillEvaluationUserReqDTO> userList;
|
|
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<EmergencyDrillEvaluationFileReqDTO> getFileList() {
|
return fileList;
|
}
|
|
public void setFileList(List<EmergencyDrillEvaluationFileReqDTO> fileList) {
|
this.fileList = fileList;
|
}
|
|
public List<EmergencyDrillEvaluationUserReqDTO> getUserList() {
|
return userList;
|
}
|
|
public void setUserList(List<EmergencyDrillEvaluationUserReqDTO> userList) {
|
this.userList = userList;
|
}
|
}
|