package cn.com.goldenwater.dcproj.model; import cn.com.goldenwater.core.model.BaseBean; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; import java.util.Date; /** * entity:BisInspRssfgdBase * * @author lhc * @date 2021-5-19 */ @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"}) public class BisInspRssfgdBase extends BaseBean implements Serializable { // 主键ID @ApiModelProperty(value = "主键ID", name = "id") private String id; // 登记表ID @ApiModelProperty(value = "登记表ID", name = "rgstrId") private String rgstrId; // 建设单位 @ApiModelProperty(value = "建设单位", name = "budDep") private String budDep; // 建设单位联系人 @ApiModelProperty(value = "建设单位联系人", name = "budDepPers") private String budDepPers; // 建设单位联系电话 @ApiModelProperty(value = "建设单位联系电话", name = "budDepPersTel") private String budDepPersTel; // 竣工验收主持单位 @ApiModelProperty(value = "竣工验收主持单位", name = "comDep") private String comDep; // 竣工验收主持单位联系人 @ApiModelProperty(value = "竣工验收主持单位联系人", name = "comDepPers") private String comDepPers; // 竣工验收主持单位联系电话 @ApiModelProperty(value = "竣工验收主持单位联系电话", name = "comDepPersTel") private String comDepPersTel; // 检查日期 @ApiModelProperty(value = "检查日期", name = "chkTm") private Date chkTm; // 整改期限 @ApiModelProperty(value = "整改期限", name = "mendTm") private Date mendTm; // 检查单位 @ApiModelProperty(value = "检查单位", name = "chkDep") private String chkDep; // 检查组成员 @ApiModelProperty(value = "检查组成员", name = "chkDepPers") private String chkDepPers; // 批复的初设任务 @ApiModelProperty(value = "批复的初设任务", name = "planTask") private String planTask; // 攻坚行动进展情况 @ApiModelProperty(value = "攻坚行动进展情况", name = "actCase") private String actCase; // 记录人员ID @ApiModelProperty(value = "记录人员ID", name = "persId") private String persId; // 创建时间 @ApiModelProperty(value = "创建时间", name = "intm") private Date intm; // 最后修改时间 @ApiModelProperty(value = "最后修改时间", name = "uptm") private Date uptm; // 备注 @ApiModelProperty(value = "备注", name = "note") private String note; private String state; // 数据状态(0:正常;9:删除) @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat") private String dataStat; public BisInspRssfgdBase() { } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getRgstrId() { return rgstrId; } public void setRgstrId(String rgstrId) { this.rgstrId = rgstrId; } public String getBudDep() { return budDep; } public void setBudDep(String budDep) { this.budDep = budDep; } public String getBudDepPers() { return budDepPers; } public void setBudDepPers(String budDepPers) { this.budDepPers = budDepPers; } public String getBudDepPersTel() { return budDepPersTel; } public void setBudDepPersTel(String budDepPersTel) { this.budDepPersTel = budDepPersTel; } public String getComDep() { return comDep; } public void setComDep(String comDep) { this.comDep = comDep; } public String getComDepPers() { return comDepPers; } public void setComDepPers(String comDepPers) { this.comDepPers = comDepPers; } public String getComDepPersTel() { return comDepPersTel; } public void setComDepPersTel(String comDepPersTel) { this.comDepPersTel = comDepPersTel; } public Date getChkTm() { return chkTm; } public void setChkTm(Date chkTm) { this.chkTm = chkTm; } public Date getMendTm() { return mendTm; } public void setMendTm(Date mendTm) { this.mendTm = mendTm; } public String getChkDep() { return chkDep; } public void setChkDep(String chkDep) { this.chkDep = chkDep; } public String getChkDepPers() { return chkDepPers; } public void setChkDepPers(String chkDepPers) { this.chkDepPers = chkDepPers; } public String getPlanTask() { return planTask; } public void setPlanTask(String planTask) { this.planTask = planTask; } public String getActCase() { return actCase; } public void setActCase(String actCase) { this.actCase = actCase; } public String getPersId() { return persId; } public void setPersId(String persId) { this.persId = persId; } public Date getIntm() { return intm; } public void setIntm(Date intm) { this.intm = intm; } public Date getUptm() { return uptm; } public void setUptm(Date uptm) { this.uptm = uptm; } public String getNote() { return note; } public void setNote(String note) { this.note = note; } public String getState() { return state; } public void setState(String state) { this.state = state; } public String getDataStat() { return dataStat; } public void setDataStat(String dataStat) { this.dataStat = dataStat; } @Override public String toString() { return "BisInspRssfgdBase [" + "id=" + id + ", rgstrId=" + rgstrId + ", budDep=" + budDep + ", budDepPers=" + budDepPers + ", budDepPersTel=" + budDepPersTel + ", comDep=" + comDep + ", comDepPers=" + comDepPers + ", comDepPersTel=" + comDepPersTel + ", chkTm=" + chkTm + ", mendTm=" + mendTm + ", chkDep=" + chkDep + ", chkDepPers=" + chkDepPers + ", planTask=" + planTask + ", actCase=" + actCase + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + ", state=" + state + ", dataStat=" + dataStat + "]"; } }