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:BisInspRsvrRgstrChkInfo * * @author lune * @date 2021年4月14日 */ @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"}) public class BisInspRsvrynRgstrChkInfo extends BaseBean implements Serializable { @ApiModelProperty(value = "主键ID", position = 1) private String id; @ApiModelProperty(value = "水库督查登记ID", position = 2) private String rgstrId; @ApiModelProperty(value = "初查年度", position = 3) private String inspYear; @ApiModelProperty(value = "原工况评价", position = 4) private String wcEvltOld; @ApiModelProperty(value = "工况总体评价(1:重大安全隐患;2:一般安全隐患;3:正常安全运行;)", position = 5) private String wcEvltNow; @ApiModelProperty(value = "重大安全隐患主要表现", position = 6) private String mshTmp; @ApiModelProperty(value = "水库检查类型(1:重大安全隐患排查;2:整改情况复查;3:其他)", position = 7) private String chkType; @ApiModelProperty(value = "是否已实施除险加固(1:是;2:否;)", position = 8) private String isTrhbco; @ApiModelProperty(value = "已实施除险加固情况(1:遗留问题;2:灾后薄弱;3:遗留问题及灾后薄弱;)", position = 9) private String trhbcoInfo; @ApiModelProperty(value = "已实施除险加固开工时间", position = 10) private Date trhbcoSttm; @ApiModelProperty(value = "已实施除险加固完工时间", position = 11) private Date trhbcoEntm; @ApiModelProperty(value = "管理单位", position = 12) private String mngUnit; @ApiModelProperty(value = "责任单位", position = 13) private String dutyUnit; @ApiModelProperty(value = "备注", position = 14) private String note; @ApiModelProperty(value = "填报状态(0:未填报;1:填报中;2:已填报)", position = 15) private String status; @ApiModelProperty(value = "记录人员ID", position = 16) private String persId; @ApiModelProperty(value = "创建时间", position = 17) private Date intm; @ApiModelProperty(value = "最后修改时间", position = 18) private Date uptm; @ApiModelProperty(value = "是否到现场", position = 19) private String isSite; @ApiModelProperty(value = "重大安全隐患主要表现", position = 20) private String chkDesc; public String getChkDesc() { return chkDesc; } public void setChkDesc(String chkDesc) { this.chkDesc = chkDesc; } public String getIsSite() { return isSite; } public void setIsSite(String isSite) { this.isSite = isSite; } 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 getInspYear() { return inspYear; } public void setInspYear(String inspYear) { this.inspYear = inspYear; } public String getWcEvltOld() { return wcEvltOld; } public void setWcEvltOld(String wcEvltOld) { this.wcEvltOld = wcEvltOld; } public String getWcEvltNow() { return wcEvltNow; } public void setWcEvltNow(String wcEvltNow) { this.wcEvltNow = wcEvltNow; } public String getMshTmp() { return mshTmp; } public void setMshTmp(String mshTmp) { this.mshTmp = mshTmp; } public String getChkType() { return chkType; } public void setChkType(String chkType) { this.chkType = chkType; } public String getIsTrhbco() { return isTrhbco; } public void setIsTrhbco(String isTrhbco) { this.isTrhbco = isTrhbco; } public String getTrhbcoInfo() { return trhbcoInfo; } public void setTrhbcoInfo(String trhbcoInfo) { this.trhbcoInfo = trhbcoInfo; } public Date getTrhbcoSttm() { return trhbcoSttm; } public void setTrhbcoSttm(Date trhbcoSttm) { this.trhbcoSttm = trhbcoSttm; } public Date getTrhbcoEntm() { return trhbcoEntm; } public void setTrhbcoEntm(Date trhbcoEntm) { this.trhbcoEntm = trhbcoEntm; } public String getMngUnit() { return mngUnit; } public void setMngUnit(String mngUnit) { this.mngUnit = mngUnit; } public String getDutyUnit() { return dutyUnit; } public void setDutyUnit(String dutyUnit) { this.dutyUnit = dutyUnit; } public String getNote() { return note; } public void setNote(String note) { this.note = note; } public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } 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; } @Override public String toString() { return "BisInspRsvrRgstrChkInfo [" + "id=" + id + ", rgstrId=" + rgstrId + ", inspYear=" + inspYear + ", wcEvltOld=" + wcEvltOld + ", wcEvltNow=" + wcEvltNow + ", mshTmp=" + mshTmp + ", chkType=" + chkType + ", isTrhbco=" + isTrhbco + ", trhbcoInfo=" + trhbcoInfo + ", trhbcoSttm=" + trhbcoSttm + ", trhbcoEntm=" + trhbcoEntm + ", mngUnit=" + mngUnit + ", dutyUnit=" + dutyUnit + ", note=" + note + ", status=" + status + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + "]"; } }