f320718509d0b441a61fed8d2f54a8847e344fe6.svn-base 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380
  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 BisInspRsvrPblmMend 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. public BisInspRsvrPblmMend() {
  87. }
  88. public String getIsRect() {
  89. return isRect;
  90. }
  91. public void setIsRect(String isRect) {
  92. this.isRect = isRect;
  93. }
  94. public String getAuditConc() {
  95. return auditConc;
  96. }
  97. public void setAuditConc(String auditConc) {
  98. this.auditConc = auditConc;
  99. }
  100. public String getAuditNote() {
  101. return auditNote;
  102. }
  103. public void setAuditNote(String auditNote) {
  104. this.auditNote = auditNote;
  105. }
  106. public List<GwComFile> getGwComFiles() {
  107. return gwComFiles;
  108. }
  109. public void setGwComFiles(List<GwComFile> gwComFiles) {
  110. this.gwComFiles = gwComFiles;
  111. }
  112. public String getId() {
  113. return id;
  114. }
  115. public void setId(String id) {
  116. this.id = id;
  117. }
  118. public String getYear() {
  119. return year;
  120. }
  121. public void setYear(String year) {
  122. this.year = year;
  123. }
  124. public String getMnth() {
  125. return mnth;
  126. }
  127. public void setMnth(String mnth) {
  128. this.mnth = mnth;
  129. }
  130. @Override
  131. public String getRgstrId() {
  132. return rgstrId;
  133. }
  134. @Override
  135. public void setRgstrId(String rgstrId) {
  136. this.rgstrId = rgstrId;
  137. }
  138. public String getRsCode() {
  139. return rsCode;
  140. }
  141. public void setRsCode(String rsCode) {
  142. this.rsCode = rsCode;
  143. }
  144. public String getRsName() {
  145. return rsName;
  146. }
  147. public void setRsName(String rsName) {
  148. this.rsName = rsName;
  149. }
  150. public String getAdCode() {
  151. return adCode;
  152. }
  153. public void setAdCode(String adCode) {
  154. this.adCode = adCode;
  155. }
  156. public String getProName() {
  157. return proName;
  158. }
  159. public void setProName(String proName) {
  160. this.proName = proName;
  161. }
  162. public String getCityName() {
  163. return cityName;
  164. }
  165. public void setCityName(String cityName) {
  166. this.cityName = cityName;
  167. }
  168. public String getCountyName() {
  169. return countyName;
  170. }
  171. public void setCountyName(String countyName) {
  172. this.countyName = countyName;
  173. }
  174. public String getDamRegCode() {
  175. return damRegCode;
  176. }
  177. public void setDamRegCode(String damRegCode) {
  178. this.damRegCode = damRegCode;
  179. }
  180. public String getEngScal() {
  181. return engScal;
  182. }
  183. public void setEngScal(String engScal) {
  184. this.engScal = engScal;
  185. }
  186. public String getSafeComment() {
  187. return safeComment;
  188. }
  189. public void setSafeComment(String safeComment) {
  190. this.safeComment = safeComment;
  191. }
  192. public String getUnit() {
  193. return unit;
  194. }
  195. public void setUnit(String unit) {
  196. this.unit = unit;
  197. }
  198. public String getPblmType() {
  199. return pblmType;
  200. }
  201. public void setPblmType(String pblmType) {
  202. this.pblmType = pblmType;
  203. }
  204. public String getPblmOption() {
  205. return pblmOption;
  206. }
  207. public void setPblmOption(String pblmOption) {
  208. this.pblmOption = pblmOption;
  209. }
  210. public String getPblmDesc() {
  211. return pblmDesc;
  212. }
  213. public void setPblmDesc(String pblmDesc) {
  214. this.pblmDesc = pblmDesc;
  215. }
  216. public String getPblmLevl() {
  217. return pblmLevl;
  218. }
  219. public void setPblmLevl(String pblmLevl) {
  220. this.pblmLevl = pblmLevl;
  221. }
  222. public String getAttach() {
  223. return attach;
  224. }
  225. public void setAttach(String attach) {
  226. this.attach = attach;
  227. }
  228. public String getPblmSn() {
  229. return pblmSn;
  230. }
  231. public void setPblmSn(String pblmSn) {
  232. this.pblmSn = pblmSn;
  233. }
  234. public String getRectConc() {
  235. return rectConc;
  236. }
  237. public void setRectConc(String rectConc) {
  238. this.rectConc = rectConc;
  239. }
  240. public String getRectMsrs() {
  241. return rectMsrs;
  242. }
  243. public void setRectMsrs(String rectMsrs) {
  244. this.rectMsrs = rectMsrs;
  245. }
  246. public String getRevwInfo() {
  247. return revwInfo;
  248. }
  249. public void setRevwInfo(String revwInfo) {
  250. this.revwInfo = revwInfo;
  251. }
  252. public Date getIntm() {
  253. return intm;
  254. }
  255. public void setIntm(Date intm) {
  256. this.intm = intm;
  257. }
  258. public Date getUptm() {
  259. return uptm;
  260. }
  261. public void setUptm(Date uptm) {
  262. this.uptm = uptm;
  263. }
  264. public String getRevwRectConc() {
  265. return revwRectConc;
  266. }
  267. public void setRevwRectConc(String revwRectConc) {
  268. this.revwRectConc = revwRectConc;
  269. }
  270. public Date getRealPlanDt() {
  271. return realPlanDt;
  272. }
  273. public void setRealPlanDt(Date realPlanDt) {
  274. this.realPlanDt = realPlanDt;
  275. }
  276. public String getRevwRectPblm() {
  277. return revwRectPblm;
  278. }
  279. public void setRevwRectPblm(String revwRectPblm) {
  280. this.revwRectPblm = revwRectPblm;
  281. }
  282. public String getRevwState() {
  283. return revwState;
  284. }
  285. public void setRevwState(String revwState) {
  286. this.revwState = revwState;
  287. }
  288. public String getColumn1() {
  289. return column1;
  290. }
  291. public void setColumn1(String column1) {
  292. this.column1 = column1;
  293. }
  294. public String getColumn2() {
  295. return column2;
  296. }
  297. public void setColumn2(String column2) {
  298. this.column2 = column2;
  299. }
  300. @Override
  301. public String toString() {
  302. 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 + "]";
  303. }
  304. }