| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407 |
- 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:BisInspRsvrPblmMend
- *
- * @author lune
- * @date 2020-7-7
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspRsvrynPblmMend extends BaseBean implements Serializable {
- @ApiModelProperty("主键ID")
- private String id;
- @ApiModelProperty("年度")
- private String year;
- @ApiModelProperty("月度")
- private String mnth;
- @ApiModelProperty("登记表ID")
- private String rgstrId;
- @ApiModelProperty("水库编码")
- private String rsCode;
- @ApiModelProperty("水库名称")
- private String rsName;
- @ApiModelProperty("行政区编码")
- private String adCode;
- @ApiModelProperty("省")
- private String proName;
- @ApiModelProperty("市")
- private String cityName;
- @ApiModelProperty("县")
- private String countyName;
- @ApiModelProperty("大坝注册登记号")
- private String damRegCode;
- @ApiModelProperty("水库规模")
- private String engScal;
- @ApiModelProperty("工况总体评价")
- private String safeComment;
- @ApiModelProperty("管理单位")
- private String unit;
- @ApiModelProperty("问题类别")
- private String pblmType;
- @ApiModelProperty("检查项目")
- private String pblmOption;
- @ApiModelProperty("问题描述")
- private String pblmDesc;
- @ApiModelProperty("问题等级")
- private String pblmLevl;
- @ApiModelProperty("附件序号")
- private String attach;
- @ApiModelProperty("问题序号")
- private String pblmSn;
- @ApiModelProperty("整改状态(1:未整改;2:正在整改;3:已整改)")
- private String rectConc;
- @ApiModelProperty("整改措施")
- private String rectMsrs;
- @ApiModelProperty("复核情况")
- private String revwInfo;
- @ApiModelProperty("创建时间")
- private Date intm;
- @ApiModelProperty("修改时间")
- private Date uptm;
- @ApiModelProperty("附件")
- private List<GwComFile> gwComFiles;
- @ApiModelProperty("审核状态")
- private String auditConc;
- @ApiModelProperty("审核意见说明")
- private String auditNote;
- @ApiModelProperty("是否反馈水利部 1 未反馈 2 反馈成功 3 反馈失败")
- private String isRect;
- @ApiModelProperty("复核整改状态(1:未整改;2:正在整改;3:整改完成;4:整改不到位;5:上报整改情况与实际不符)")
- private String revwRectConc;
- @ApiModelProperty("实际/计划整改完成时间")
- private Date realPlanDt;
- @ApiModelProperty("复核整改问题")
- private String revwRectPblm;
- @ApiModelProperty("复核填报状态(0:未填报;1:填报中;2:已填报)")
- private String revwState;
- @ApiModelProperty("")
- private String column1;
- @ApiModelProperty("")
- private String column2;
- @ApiModelProperty("详细描述")
- private String inspPblmDesc;
- public void pblmConvert(BisInspPblm bisInspPblm) {
- this.auditConc = "0";
- this.auditNote = bisInspPblm.getPblmSggtn();
- this.rsCode = bisInspPblm.getObjCode();
- this.rsName = bisInspPblm.getObjName();
- this.adCode = bisInspPblm.getObjAdCode();
- this.pblmType = bisInspPblm.getPblmNameBz();
- this.pblmOption = bisInspPblm.getCheckPointBz();
- this.pblmDesc = bisInspPblm.getPblmDescBz();
- this.inspPblmDesc = bisInspPblm.getInspPblmDesc();
- this.pblmLevl = bisInspPblm.getInspPblmCate();
- this.attach = bisInspPblm.getAttachBz();
- this.pblmSn = bisInspPblm.getSnNumBz();
- this.rectMsrs = bisInspPblm.getNote();
- this.intm = new Date();
- this.uptm = new Date();
- this.revwState = "0";
- }
- public String getInspPblmDesc() {
- return inspPblmDesc;
- }
- public void setInspPblmDesc(String inspPblmDesc) {
- this.inspPblmDesc = inspPblmDesc;
- }
- public String getIsRect() {
- return isRect;
- }
- public void setIsRect(String isRect) {
- this.isRect = isRect;
- }
- 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 List<GwComFile> getGwComFiles() {
- return gwComFiles;
- }
- public void setGwComFiles(List<GwComFile> gwComFiles) {
- this.gwComFiles = gwComFiles;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getYear() {
- return year;
- }
- public void setYear(String year) {
- this.year = year;
- }
- public String getMnth() {
- return mnth;
- }
- public void setMnth(String mnth) {
- this.mnth = mnth;
- }
- @Override
- public String getRgstrId() {
- return rgstrId;
- }
- @Override
- public void setRgstrId(String rgstrId) {
- this.rgstrId = rgstrId;
- }
- public String getRsCode() {
- return rsCode;
- }
- public void setRsCode(String rsCode) {
- this.rsCode = rsCode;
- }
- public String getRsName() {
- return rsName;
- }
- public void setRsName(String rsName) {
- this.rsName = rsName;
- }
- 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 getDamRegCode() {
- return damRegCode;
- }
- public void setDamRegCode(String damRegCode) {
- this.damRegCode = damRegCode;
- }
- public String getEngScal() {
- return engScal;
- }
- public void setEngScal(String engScal) {
- this.engScal = engScal;
- }
- public String getSafeComment() {
- return safeComment;
- }
- public void setSafeComment(String safeComment) {
- this.safeComment = safeComment;
- }
- 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 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 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 "BisInspRsvrPblmMend [" + "id=" + id + ", year=" + year + ", mnth=" + mnth + ", rgstrId=" + rgstrId + ", rsCode=" + rsCode + ", rsName=" + rsName + ", adCode=" + adCode + ", proName=" + proName + ", cityName=" + cityName + ", countyName=" + countyName + ", damRegCode=" + damRegCode + ", engScal=" + engScal + ", safeComment=" + safeComment + ", unit=" + unit + ", pblmType=" + pblmType + ", pblmOption=" + pblmOption + ", pblmDesc=" + pblmDesc + ", pblmLevl=" + pblmLevl + ", attach=" + attach + ", pblmSn=" + pblmSn + ", rectConc=" + rectConc + ", rectMsrs=" + rectMsrs + ", revwInfo=" + revwInfo + ", intm=" + intm + ", uptm=" + uptm + "]";
- }
- }
|