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 java.util.Date;
|
|
@TableName("emergency_drill_evaluation")
|
public class EmergencyDrillEvaluationInfo {
|
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
private Boolean delFlag;
|
|
private Date gmtCreate;
|
|
private Date gmtModitify;
|
|
private Long createUid;
|
|
private Long updateUid;
|
|
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 getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Boolean getDelFlag() {
|
return delFlag;
|
}
|
|
public void setDelFlag(Boolean delFlag) {
|
this.delFlag = delFlag;
|
}
|
|
public Date getGmtCreate() {
|
return gmtCreate;
|
}
|
|
public void setGmtCreate(Date gmtCreate) {
|
this.gmtCreate = gmtCreate;
|
}
|
|
public Date getGmtModitify() {
|
return gmtModitify;
|
}
|
|
public void setGmtModitify(Date gmtModitify) {
|
this.gmtModitify = gmtModitify;
|
}
|
|
public Long getCreateUid() {
|
return createUid;
|
}
|
|
public void setCreateUid(Long createUid) {
|
this.createUid = createUid;
|
}
|
|
public Long getUpdateUid() {
|
return updateUid;
|
}
|
|
public void setUpdateUid(Long updateUid) {
|
this.updateUid = updateUid;
|
}
|
|
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;
|
}
|
|
}
|