4b7251ca0e8dcb977fd4d028f6c6ed42662bc74d.svn-base 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. import java.util.List;
  8. /**
  9. * entity:BisInspRsvrPblmMend
  10. *
  11. * @author lune
  12. * @date 2020-7-7
  13. */
  14. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  15. public class BisInspRsvrynPblmMend extends BaseBean implements Serializable {
  16. @ApiModelProperty("主键ID")
  17. private String id;
  18. @ApiModelProperty("年度")
  19. private String year;
  20. @ApiModelProperty("月度")
  21. private String mnth;
  22. @ApiModelProperty("登记表ID")
  23. private String rgstrId;
  24. @ApiModelProperty("水库编码")
  25. private String rsCode;
  26. @ApiModelProperty("水库名称")
  27. private String rsName;
  28. @ApiModelProperty("行政区编码")
  29. private String adCode;
  30. @ApiModelProperty("省")
  31. private String proName;
  32. @ApiModelProperty("市")
  33. private String cityName;
  34. @ApiModelProperty("县")
  35. private String countyName;
  36. @ApiModelProperty("大坝注册登记号")
  37. private String damRegCode;
  38. @ApiModelProperty("水库规模")
  39. private String engScal;
  40. @ApiModelProperty("工况总体评价")
  41. private String safeComment;
  42. @ApiModelProperty("管理单位")
  43. private String unit;
  44. @ApiModelProperty("问题类别")
  45. private String pblmType;
  46. @ApiModelProperty("检查项目")
  47. private String pblmOption;
  48. @ApiModelProperty("问题描述")
  49. private String pblmDesc;
  50. @ApiModelProperty("问题等级")
  51. private String pblmLevl;
  52. @ApiModelProperty("附件序号")
  53. private String attach;
  54. @ApiModelProperty("问题序号")
  55. private String pblmSn;
  56. @ApiModelProperty("整改状态(1:未整改;2:正在整改;3:已整改)")
  57. private String rectConc;
  58. @ApiModelProperty("整改措施")
  59. private String rectMsrs;
  60. @ApiModelProperty("复核情况")
  61. private String revwInfo;
  62. @ApiModelProperty("创建时间")
  63. private Date intm;
  64. @ApiModelProperty("修改时间")
  65. private Date uptm;
  66. @ApiModelProperty("附件")
  67. private List<GwComFile> gwComFiles;
  68. @ApiModelProperty("审核状态")
  69. private String auditConc;
  70. @ApiModelProperty("审核意见说明")
  71. private String auditNote;
  72. @ApiModelProperty("是否反馈水利部 1 未反馈 2 反馈成功 3 反馈失败")
  73. private String isRect;
  74. @ApiModelProperty("复核整改状态(1:未整改;2:正在整改;3:整改完成;4:整改不到位;5:上报整改情况与实际不符)")
  75. private String revwRectConc;
  76. @ApiModelProperty("实际/计划整改完成时间")
  77. private Date realPlanDt;
  78. @ApiModelProperty("复核整改问题")
  79. private String revwRectPblm;
  80. @ApiModelProperty("复核填报状态(0:未填报;1:填报中;2:已填报)")
  81. private String revwState;
  82. @ApiModelProperty("")
  83. private String column1;
  84. @ApiModelProperty("")
  85. private String column2;
  86. @ApiModelProperty("详细描述")
  87. private String inspPblmDesc;
  88. public void pblmConvert(BisInspPblm bisInspPblm) {
  89. this.auditConc = "0";
  90. this.auditNote = bisInspPblm.getPblmSggtn();
  91. this.rsCode = bisInspPblm.getObjCode();
  92. this.rsName = bisInspPblm.getObjName();
  93. this.adCode = bisInspPblm.getObjAdCode();
  94. this.pblmType = bisInspPblm.getPblmNameBz();
  95. this.pblmOption = bisInspPblm.getCheckPointBz();
  96. this.pblmDesc = bisInspPblm.getPblmDescBz();
  97. this.inspPblmDesc = bisInspPblm.getInspPblmDesc();
  98. this.pblmLevl = bisInspPblm.getInspPblmCate();
  99. this.attach = bisInspPblm.getAttachBz();
  100. this.pblmSn = bisInspPblm.getSnNumBz();
  101. this.rectMsrs = bisInspPblm.getNote();
  102. this.intm = new Date();
  103. this.uptm = new Date();
  104. this.revwState = "0";
  105. }
  106. public String getInspPblmDesc() {
  107. return inspPblmDesc;
  108. }
  109. public void setInspPblmDesc(String inspPblmDesc) {
  110. this.inspPblmDesc = inspPblmDesc;
  111. }
  112. public String getIsRect() {
  113. return isRect;
  114. }
  115. public void setIsRect(String isRect) {
  116. this.isRect = isRect;
  117. }
  118. public String getAuditConc() {
  119. return auditConc;
  120. }
  121. public void setAuditConc(String auditConc) {
  122. this.auditConc = auditConc;
  123. }
  124. public String getAuditNote() {
  125. return auditNote;
  126. }
  127. public void setAuditNote(String auditNote) {
  128. this.auditNote = auditNote;
  129. }
  130. public List<GwComFile> getGwComFiles() {
  131. return gwComFiles;
  132. }
  133. public void setGwComFiles(List<GwComFile> gwComFiles) {
  134. this.gwComFiles = gwComFiles;
  135. }
  136. public String getId() {
  137. return id;
  138. }
  139. public void setId(String id) {
  140. this.id = id;
  141. }
  142. public String getYear() {
  143. return year;
  144. }
  145. public void setYear(String year) {
  146. this.year = year;
  147. }
  148. public String getMnth() {
  149. return mnth;
  150. }
  151. public void setMnth(String mnth) {
  152. this.mnth = mnth;
  153. }
  154. @Override
  155. public String getRgstrId() {
  156. return rgstrId;
  157. }
  158. @Override
  159. public void setRgstrId(String rgstrId) {
  160. this.rgstrId = rgstrId;
  161. }
  162. public String getRsCode() {
  163. return rsCode;
  164. }
  165. public void setRsCode(String rsCode) {
  166. this.rsCode = rsCode;
  167. }
  168. public String getRsName() {
  169. return rsName;
  170. }
  171. public void setRsName(String rsName) {
  172. this.rsName = rsName;
  173. }
  174. public String getAdCode() {
  175. return adCode;
  176. }
  177. public void setAdCode(String adCode) {
  178. this.adCode = adCode;
  179. }
  180. public String getProName() {
  181. return proName;
  182. }
  183. public void setProName(String proName) {
  184. this.proName = proName;
  185. }
  186. public String getCityName() {
  187. return cityName;
  188. }
  189. public void setCityName(String cityName) {
  190. this.cityName = cityName;
  191. }
  192. public String getCountyName() {
  193. return countyName;
  194. }
  195. public void setCountyName(String countyName) {
  196. this.countyName = countyName;
  197. }
  198. public String getDamRegCode() {
  199. return damRegCode;
  200. }
  201. public void setDamRegCode(String damRegCode) {
  202. this.damRegCode = damRegCode;
  203. }
  204. public String getEngScal() {
  205. return engScal;
  206. }
  207. public void setEngScal(String engScal) {
  208. this.engScal = engScal;
  209. }
  210. public String getSafeComment() {
  211. return safeComment;
  212. }
  213. public void setSafeComment(String safeComment) {
  214. this.safeComment = safeComment;
  215. }
  216. public String getUnit() {
  217. return unit;
  218. }
  219. public void setUnit(String unit) {
  220. this.unit = unit;
  221. }
  222. public String getPblmType() {
  223. return pblmType;
  224. }
  225. public void setPblmType(String pblmType) {
  226. this.pblmType = pblmType;
  227. }
  228. public String getPblmOption() {
  229. return pblmOption;
  230. }
  231. public void setPblmOption(String pblmOption) {
  232. this.pblmOption = pblmOption;
  233. }
  234. public String getPblmDesc() {
  235. return pblmDesc;
  236. }
  237. public void setPblmDesc(String pblmDesc) {
  238. this.pblmDesc = pblmDesc;
  239. }
  240. public String getPblmLevl() {
  241. return pblmLevl;
  242. }
  243. public void setPblmLevl(String pblmLevl) {
  244. this.pblmLevl = pblmLevl;
  245. }
  246. public String getAttach() {
  247. return attach;
  248. }
  249. public void setAttach(String attach) {
  250. this.attach = attach;
  251. }
  252. public String getPblmSn() {
  253. return pblmSn;
  254. }
  255. public void setPblmSn(String pblmSn) {
  256. this.pblmSn = pblmSn;
  257. }
  258. public String getRectConc() {
  259. return rectConc;
  260. }
  261. public void setRectConc(String rectConc) {
  262. this.rectConc = rectConc;
  263. }
  264. public String getRectMsrs() {
  265. return rectMsrs;
  266. }
  267. public void setRectMsrs(String rectMsrs) {
  268. this.rectMsrs = rectMsrs;
  269. }
  270. public String getRevwInfo() {
  271. return revwInfo;
  272. }
  273. public void setRevwInfo(String revwInfo) {
  274. this.revwInfo = revwInfo;
  275. }
  276. public Date getIntm() {
  277. return intm;
  278. }
  279. public void setIntm(Date intm) {
  280. this.intm = intm;
  281. }
  282. public Date getUptm() {
  283. return uptm;
  284. }
  285. public void setUptm(Date uptm) {
  286. this.uptm = uptm;
  287. }
  288. public String getRevwRectConc() {
  289. return revwRectConc;
  290. }
  291. public void setRevwRectConc(String revwRectConc) {
  292. this.revwRectConc = revwRectConc;
  293. }
  294. public Date getRealPlanDt() {
  295. return realPlanDt;
  296. }
  297. public void setRealPlanDt(Date realPlanDt) {
  298. this.realPlanDt = realPlanDt;
  299. }
  300. public String getRevwRectPblm() {
  301. return revwRectPblm;
  302. }
  303. public void setRevwRectPblm(String revwRectPblm) {
  304. this.revwRectPblm = revwRectPblm;
  305. }
  306. public String getRevwState() {
  307. return revwState;
  308. }
  309. public void setRevwState(String revwState) {
  310. this.revwState = revwState;
  311. }
  312. public String getColumn1() {
  313. return column1;
  314. }
  315. public void setColumn1(String column1) {
  316. this.column1 = column1;
  317. }
  318. public String getColumn2() {
  319. return column2;
  320. }
  321. public void setColumn2(String column2) {
  322. this.column2 = column2;
  323. }
  324. @Override
  325. public String toString() {
  326. 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 + "]";
  327. }
  328. }