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; import java.util.List; /** * entity:BisInspWagaPblm * * @author lhc * @date 2021-5-21 */ @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"}) public class BisInspWagaPblm 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 = "objCode") private String objCode; // 水闸名称 @ApiModelProperty(value = "水闸名称", name = "gateName") private String gateName; // 行政区编码 @ApiModelProperty(value = "行政区编码", name = "adCode") private String adCode; // 省名称 @ApiModelProperty(value = "省名称", name = "proName") private String proName; // 市名称 @ApiModelProperty(value = "市名称", name = "cityName") private String cityName; // 县名称 @ApiModelProperty(value = "县名称", name = "countyName") private String countyName; // 工况总体评价 @ApiModelProperty(value = "工况总体评价", name = "safeComment") private String safeComment; // 工程规模--1:大型;2:中型;3:小型; @ApiModelProperty(value = "工程规模--1:大型;2:中型;3:小型;", name = "engScal") private String engScal; // 管理单位 @ApiModelProperty(value = "管理单位", name = "unit") private String unit; // 问题类别 @ApiModelProperty(value = "问题类别", name = "pblmType") private String pblmType; // 检查项目 @ApiModelProperty(value = "检查项目", name = "pblmOption") private String pblmOption; // 问题描述 @ApiModelProperty(value = "问题描述", name = "pblmDesc") private String pblmDesc; // 问题等级 @ApiModelProperty(value = "问题等级", name = "pblmLevl") private String pblmLevl; // 附件序号 @ApiModelProperty(value = "附件序号", name = "attach") private String attach; // 问题序号 @ApiModelProperty(value = "问题序号", name = "pblmSn") private String pblmSn; // 整改状态(1:未整改;2:正在整改;3:已整改) @ApiModelProperty(value = "整改状态(1:未整改;2:正在整改;3:已整改)", name = "rectConc") private String rectConc; // 整改措施 @ApiModelProperty(value = "整改措施", name = "rectMsrs") private String rectMsrs; // 复核情况 @ApiModelProperty(value = "复核情况", name = "revwInfo") private String revwInfo; // 创建时间 @ApiModelProperty(value = "创建时间", name = "intm") private Date intm; // 修改时间 @ApiModelProperty(value = "修改时间", name = "uptm") private Date uptm; // 审核状态 1:通过 2:未通过 @ApiModelProperty(value = "审核状态 1:通过 2:未通过", name = "auditConc") private String auditConc; // 审核意见 @ApiModelProperty(value = "审核意见", name = "auditNote") private String auditNote; // 复核整改状态(1:未整改;2:正在整改;3:整改完成;4:整改不到位;5:上报整改情况与实际不符) @ApiModelProperty(value = "复核整改状态(1:未整改;2:正在整改;3:整改完成;4:整改不到位;5:上报整改情况与实际不符)", name = "revwRectConc") private String revwRectConc; // 实际/计划整改完成时间 @ApiModelProperty(value = "实际/计划整改完成时间", name = "realPlanDt") private Date realPlanDt; // 复核整改问题 @ApiModelProperty(value = "复核整改问题", name = "revwRectPblm") private String revwRectPblm; // 复核填报状态(0:未填报;1:填报中;2:已填报) @ApiModelProperty(value = "复核填报状态(0:未填报;1:填报中;2:已填报)", name = "revwState") private String revwState; // 督查状态(0:未督查;2:督查中;3:已督查) @ApiModelProperty(value = "督查状态(0:未督查;2:督查中;3:已督查)", name = "state") private String state; // 数据状态(0:正常;9:删除) @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat") private String dataStat; // 导入数据时扩展字段1 @ApiModelProperty(value = "导入数据时扩展字段1", name = "column1") private String column1; // 导入数据时扩展字段2 @ApiModelProperty(value = "导入数据时扩展字段2", name = "column2") private String column2; @ApiModelProperty(value = "文件", name = "gwComFiles") private List gwComFiles; public BisInspWagaPblm() { } public List getGwComFiles() { return gwComFiles; } public void setGwComFiles(List gwComFiles) { this.gwComFiles = gwComFiles; } 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 getObjCode() { return objCode; } public void setObjCode(String objCode) { this.objCode = objCode; } public String getGateName() { return gateName; } public void setGateName(String gateName) { this.gateName = gateName; } public String getAdCode() { return adCode; } public void setAdCode(String adCode) { this.adCode = adCode; } public String getProName() { return proName; } public void setProName(String proName) { this.proName = proName; } public String getCityName() { return cityName; } public void setCityName(String cityName) { this.cityName = cityName; } public String getCountyName() { return countyName; } public void setCountyName(String countyName) { this.countyName = countyName; } public String getSafeComment() { return safeComment; } public void setSafeComment(String safeComment) { this.safeComment = safeComment; } public String getEngScal() { return engScal; } public void setEngScal(String engScal) { this.engScal = engScal; } public String getUnit() { return unit; } public void setUnit(String unit) { this.unit = unit; } public String getPblmType() { return pblmType; } public void setPblmType(String pblmType) { this.pblmType = pblmType; } public String getPblmOption() { return pblmOption; } public void setPblmOption(String pblmOption) { this.pblmOption = pblmOption; } public String getPblmDesc() { return pblmDesc; } public void setPblmDesc(String pblmDesc) { this.pblmDesc = pblmDesc; } public String getPblmLevl() { return pblmLevl; } public void setPblmLevl(String pblmLevl) { this.pblmLevl = pblmLevl; } public String getAttach() { return attach; } public void setAttach(String attach) { this.attach = attach; } public String getPblmSn() { return pblmSn; } public void setPblmSn(String pblmSn) { this.pblmSn = pblmSn; } public String getRectConc() { return rectConc; } public void setRectConc(String rectConc) { this.rectConc = rectConc; } public String getRectMsrs() { return rectMsrs; } public void setRectMsrs(String rectMsrs) { this.rectMsrs = rectMsrs; } public String getRevwInfo() { return revwInfo; } public void setRevwInfo(String revwInfo) { this.revwInfo = revwInfo; } 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 getAuditConc() { return auditConc; } public void setAuditConc(String auditConc) { this.auditConc = auditConc; } public String getAuditNote() { return auditNote; } public void setAuditNote(String auditNote) { this.auditNote = auditNote; } public String getRevwRectConc() { return revwRectConc; } public void setRevwRectConc(String revwRectConc) { this.revwRectConc = revwRectConc; } public Date getRealPlanDt() { return realPlanDt; } public void setRealPlanDt(Date realPlanDt) { this.realPlanDt = realPlanDt; } public String getRevwRectPblm() { return revwRectPblm; } public void setRevwRectPblm(String revwRectPblm) { this.revwRectPblm = revwRectPblm; } public String getRevwState() { return revwState; } public void setRevwState(String revwState) { this.revwState = revwState; } 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; } public String getColumn1() { return column1; } public void setColumn1(String column1) { this.column1 = column1; } public String getColumn2() { return column2; } public void setColumn2(String column2) { this.column2 = column2; } @Override public String toString() { return "BisInspWagaPblm [" + "id=" + id + ", rgstrId=" + rgstrId + ", objCode=" + objCode + ", gateName=" + gateName + ", adCode=" + adCode + ", proName=" + proName + ", cityName=" + cityName + ", countyName=" + countyName + ", safeComment=" + safeComment + ", engScal=" + engScal + ", unit=" + unit + ", pblmType=" + pblmType + ", pblmOption=" + pblmOption + ", pblmDesc=" + pblmDesc + ", pblmLevl=" + pblmLevl + ", attach=" + attach + ", pblmSn=" + pblmSn + ", rectConc=" + rectConc + ", rectMsrs=" + rectMsrs + ", revwInfo=" + revwInfo + ", intm=" + intm + ", uptm=" + uptm + ", auditConc=" + auditConc + ", auditNote=" + auditNote + ", revwRectConc=" + revwRectConc + ", realPlanDt=" + realPlanDt + ", revwRectPblm=" + revwRectPblm + ", revwState=" + revwState + ", state=" + state + ", dataStat=" + dataStat + ", column1=" + column1 + ", column2=" + column2 + "]"; } }