d90e71e952a9945c0e06000f75903c79b4bd72be.svn-base 11 KB

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