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_execute")
|
public class EmergencyDrillExecuteInfoDetailDO {
|
|
private String recordUserName;
|
|
public String getRecordUserName() {
|
return recordUserName;
|
}
|
|
public void setRecordUserName(String recordUserName) {
|
this.recordUserName = recordUserName;
|
}
|
|
private String drillName;
|
|
public String getDrillName() {
|
return drillName;
|
}
|
|
public void setDrillName(String drillName) {
|
this.drillName = drillName;
|
}
|
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
private Boolean delFlag;
|
|
private Date gmtCreate;
|
|
private Date gmtModitify;
|
|
private Long createUid;
|
|
private Long updateUid;
|
|
private Boolean status;
|
|
private Date drillRecordDate;
|
|
private Long drillPlanId;
|
|
private Long recordUserUid;
|
|
private String processDesc;
|
|
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 Boolean getStatus() {
|
return status;
|
}
|
|
public void setStatus(Boolean status) {
|
this.status = status;
|
}
|
|
public Date getDrillRecordDate() {
|
return drillRecordDate;
|
}
|
|
public void setDrillRecordDate(Date drillRecordDate) {
|
this.drillRecordDate = drillRecordDate;
|
}
|
|
public Long getDrillPlanId() {
|
return drillPlanId;
|
}
|
|
public void setDrillPlanId(Long drillPlanId) {
|
this.drillPlanId = drillPlanId;
|
}
|
|
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;
|
}
|
|
@Override
|
public String toString() {
|
return "EmergencyDrillExecuteInfo{" +
|
"id=" + id +
|
", delFlag=" + delFlag +
|
", gmtCreate=" + gmtCreate +
|
", gmtModitify=" + gmtModitify +
|
", createUid=" + createUid +
|
", updateUid=" + updateUid +
|
", status=" + status +
|
", drillRecordDate=" + drillRecordDate +
|
", drillPlanId=" + drillPlanId +
|
", recordUserUid=" + recordUserUid +
|
", processDesc='" + processDesc + '\'' +
|
'}';
|
}
|
}
|