edb7fbb7eaf153330d5c58f498025ace4b6d7bc5.svn-base 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412
  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. /**
  8. * entity:BisInspIrrWas
  9. *
  10. * @author lune
  11. * @date 2020-4-30
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class BisInspIrrWas extends BaseBean implements Serializable {
  15. @ApiModelProperty("ID")
  16. private String id;
  17. @ApiModelProperty("水库督查登记ID")
  18. private String rgstrId;
  19. @ApiModelProperty("督查对象ID")
  20. private String objId;
  21. @ApiModelProperty("工程代码")
  22. private String code;
  23. @ApiModelProperty("工程名称")
  24. private String name;
  25. @ApiModelProperty("调研地点行政区代码")
  26. private String adCode;
  27. @ApiModelProperty("调研地点(*县*乡*村)")
  28. private String adName;
  29. @ApiModelProperty("项目来源(建设部门)1水利 2国土 3发改 4农业 5财政(原农发)6烟草 7其他")
  30. private String sour;
  31. @ApiModelProperty("建成时间")
  32. private String compDate;
  33. @ApiModelProperty("过闸流量(引水能力) (m3/s)")
  34. private Double lockDisc;
  35. @ApiModelProperty("控制灌溉面积(亩)")
  36. private Double irrArea;
  37. @ApiModelProperty("形式 1土石 2混凝土3其他")
  38. private String wasType;
  39. @ApiModelProperty("形式其他备注")
  40. private String wasTypeNote;
  41. @ApiModelProperty("是否属于高标准农田 1是 2否 3部分属于")
  42. private String higStnType;
  43. @ApiModelProperty("因工程问题导致原先可灌溉但现在无法灌溉的面积(亩)但现在无法灌溉的面积(亩) 但现在无法 灌溉的面积(亩)")
  44. private Double prjPbmArea;
  45. @ApiModelProperty("工程所有权人1乡镇或县级 2村集体 3用水合作组织 4个人 5不明确")
  46. private String prjWhoTend;
  47. @ApiModelProperty("工程使用权1村集体 2用水合作组织 3个人")
  48. private String prjUsrType;
  49. @ApiModelProperty("管护主体 1乡镇 2村集体 3用水合作组织 4个人 5专业管理队伍 6不明确")
  50. private String whoTend;
  51. @ApiModelProperty("是否有管护记录 1有 2 否")
  52. private String isTendRcrd;
  53. @ApiModelProperty("有管护记录 1好 2一般 3差")
  54. private String tendRcrdType;
  55. @ApiModelProperty("是否能引水 1是2 否2")
  56. private String isRun;
  57. @ApiModelProperty("不能引水原因1水源发生较大变化 2机电设备损坏 3闸门不能正常开启 4工程坍塌损坏严重 5其他")
  58. private String notRunType;
  59. @ApiModelProperty("不能引水原因其他说明")
  60. private String notRunNote;
  61. @ApiModelProperty("工程表面是否有剥蚀1是 2 否")
  62. private String isCrrd;
  63. @ApiModelProperty("工程建筑结构是否完整1是 2 否")
  64. private String isBulAll;
  65. @ApiModelProperty("工程有无明显空洞")
  66. private String isCavity;
  67. @ApiModelProperty("工程有无明显渗水")
  68. private String isSpg;
  69. @ApiModelProperty("工程状况总体评价 1 好 2一般 3较差")
  70. private String evaluate;
  71. @ApiModelProperty("意见建议或需要说明的情况")
  72. private String note;
  73. @ApiModelProperty("调研人员姓名")
  74. private String invsrName;
  75. @ApiModelProperty("调研人员联系电话")
  76. private String invsrPhone;
  77. @ApiModelProperty("调研时间")
  78. private Date invsrTm;
  79. @ApiModelProperty("创建人")
  80. private String persId;
  81. @ApiModelProperty("创建时间")
  82. private Date intm;
  83. @ApiModelProperty("更新时间")
  84. private Date uptm;
  85. @ApiModelProperty("数据状态(0:正常;9:删除)")
  86. private String dataStat;
  87. @ApiModelProperty("填报状态")
  88. private String state;
  89. @ApiModelProperty("PC经度")
  90. private Double centerX;
  91. @ApiModelProperty("PC纬度")
  92. private Double centerY;
  93. @ApiModelProperty("高德经度")
  94. private Double gdX;
  95. @ApiModelProperty("高德纬度")
  96. private Double gdY;
  97. @ApiModelProperty("项目来源(建设部门)其他 备注")
  98. private String sourNote;
  99. @ApiModelProperty("是否2020年前建成,1:2020之前;2:2020年之后")
  100. private String isCurryearComp;
  101. @ApiModelProperty("2020年之前,1:20-60年代;2:60-70年代;3:70-80年代;4:80-90年代;5:90-00年代")
  102. private String beforeCurryearComp;
  103. @ApiModelProperty("2020年之后,年份")
  104. private String afterCurryearComp;
  105. public String getIsCurryearComp() {
  106. return isCurryearComp;
  107. }
  108. public void setIsCurryearComp(String isCurryearComp) {
  109. this.isCurryearComp = isCurryearComp;
  110. }
  111. public String getBeforeCurryearComp() {
  112. return beforeCurryearComp;
  113. }
  114. public void setBeforeCurryearComp(String beforeCurryearComp) {
  115. this.beforeCurryearComp = beforeCurryearComp;
  116. }
  117. public String getAfterCurryearComp() {
  118. return afterCurryearComp;
  119. }
  120. public void setAfterCurryearComp(String afterCurryearComp) {
  121. this.afterCurryearComp = afterCurryearComp;
  122. }
  123. public String getSourNote() {
  124. return sourNote;
  125. }
  126. public void setSourNote(String sourNote) {
  127. this.sourNote = sourNote;
  128. }
  129. public Double getCenterX() {
  130. return centerX;
  131. }
  132. public void setCenterX(Double centerX) {
  133. this.centerX = centerX;
  134. }
  135. public Double getCenterY() {
  136. return centerY;
  137. }
  138. public void setCenterY(Double centerY) {
  139. this.centerY = centerY;
  140. }
  141. public Double getGdX() {
  142. return gdX;
  143. }
  144. public void setGdX(Double gdX) {
  145. this.gdX = gdX;
  146. }
  147. public Double getGdY() {
  148. return gdY;
  149. }
  150. public void setGdY(Double gdY) {
  151. this.gdY = gdY;
  152. }
  153. public BisInspIrrWas() {
  154. }
  155. public Double getIrrArea() {
  156. return irrArea;
  157. }
  158. public void setIrrArea(Double irrArea) {
  159. this.irrArea = irrArea;
  160. }
  161. public Double getPrjPbmArea() {
  162. return prjPbmArea;
  163. }
  164. public void setPrjPbmArea(Double prjPbmArea) {
  165. this.prjPbmArea = prjPbmArea;
  166. }
  167. public String getId() {
  168. return id;
  169. }
  170. public void setId(String id) {
  171. this.id = id;
  172. }
  173. @Override
  174. public String getRgstrId() {
  175. return rgstrId;
  176. }
  177. @Override
  178. public void setRgstrId(String rgstrId) {
  179. this.rgstrId = rgstrId;
  180. }
  181. @Override
  182. public String getObjId() {
  183. return objId;
  184. }
  185. @Override
  186. public void setObjId(String objId) {
  187. this.objId = objId;
  188. }
  189. public String getCode() {
  190. return code;
  191. }
  192. public void setCode(String code) {
  193. this.code = code;
  194. }
  195. public String getName() {
  196. return name;
  197. }
  198. public void setName(String name) {
  199. this.name = name;
  200. }
  201. public String getAdCode() {
  202. return adCode;
  203. }
  204. public void setAdCode(String adCode) {
  205. this.adCode = adCode;
  206. }
  207. public String getAdName() {
  208. return adName;
  209. }
  210. public void setAdName(String adName) {
  211. this.adName = adName;
  212. }
  213. public String getSour() {
  214. return sour;
  215. }
  216. public void setSour(String sour) {
  217. this.sour = sour;
  218. }
  219. public String getCompDate() {
  220. return compDate;
  221. }
  222. public void setCompDate(String compDate) {
  223. this.compDate = compDate;
  224. }
  225. public Double getLockDisc() {
  226. return lockDisc;
  227. }
  228. public void setLockDisc(Double lockDisc) {
  229. this.lockDisc = lockDisc;
  230. }
  231. public String getWasType() {
  232. return wasType;
  233. }
  234. public void setWasType(String wasType) {
  235. this.wasType = wasType;
  236. }
  237. public String getWasTypeNote() {
  238. return wasTypeNote;
  239. }
  240. public void setWasTypeNote(String wasTypeNote) {
  241. this.wasTypeNote = wasTypeNote;
  242. }
  243. public String getHigStnType() {
  244. return higStnType;
  245. }
  246. public void setHigStnType(String higStnType) {
  247. this.higStnType = higStnType;
  248. }
  249. public String getPrjWhoTend() {
  250. return prjWhoTend;
  251. }
  252. public void setPrjWhoTend(String prjWhoTend) {
  253. this.prjWhoTend = prjWhoTend;
  254. }
  255. public String getPrjUsrType() {
  256. return prjUsrType;
  257. }
  258. public void setPrjUsrType(String prjUsrType) {
  259. this.prjUsrType = prjUsrType;
  260. }
  261. public String getWhoTend() {
  262. return whoTend;
  263. }
  264. public void setWhoTend(String whoTend) {
  265. this.whoTend = whoTend;
  266. }
  267. public String getIsTendRcrd() {
  268. return isTendRcrd;
  269. }
  270. public void setIsTendRcrd(String isTendRcrd) {
  271. this.isTendRcrd = isTendRcrd;
  272. }
  273. public String getTendRcrdType() {
  274. return tendRcrdType;
  275. }
  276. public void setTendRcrdType(String tendRcrdType) {
  277. this.tendRcrdType = tendRcrdType;
  278. }
  279. public String getIsRun() {
  280. return isRun;
  281. }
  282. public void setIsRun(String isRun) {
  283. this.isRun = isRun;
  284. }
  285. public String getNotRunType() {
  286. return notRunType;
  287. }
  288. public void setNotRunType(String notRunType) {
  289. this.notRunType = notRunType;
  290. }
  291. public String getNotRunNote() {
  292. return notRunNote;
  293. }
  294. public void setNotRunNote(String notRunNote) {
  295. this.notRunNote = notRunNote;
  296. }
  297. public String getIsCrrd() {
  298. return isCrrd;
  299. }
  300. public void setIsCrrd(String isCrrd) {
  301. this.isCrrd = isCrrd;
  302. }
  303. public String getIsBulAll() {
  304. return isBulAll;
  305. }
  306. public void setIsBulAll(String isBulAll) {
  307. this.isBulAll = isBulAll;
  308. }
  309. public String getIsCavity() {
  310. return isCavity;
  311. }
  312. public void setIsCavity(String isCavity) {
  313. this.isCavity = isCavity;
  314. }
  315. public String getIsSpg() {
  316. return isSpg;
  317. }
  318. public void setIsSpg(String isSpg) {
  319. this.isSpg = isSpg;
  320. }
  321. public String getEvaluate() {
  322. return evaluate;
  323. }
  324. public void setEvaluate(String evaluate) {
  325. this.evaluate = evaluate;
  326. }
  327. public String getNote() {
  328. return note;
  329. }
  330. public void setNote(String note) {
  331. this.note = note;
  332. }
  333. public String getInvsrName() {
  334. return invsrName;
  335. }
  336. public void setInvsrName(String invsrName) {
  337. this.invsrName = invsrName;
  338. }
  339. public String getInvsrPhone() {
  340. return invsrPhone;
  341. }
  342. public void setInvsrPhone(String invsrPhone) {
  343. this.invsrPhone = invsrPhone;
  344. }
  345. public Date getInvsrTm() {
  346. return invsrTm;
  347. }
  348. public void setInvsrTm(Date invsrTm) {
  349. this.invsrTm = invsrTm;
  350. }
  351. public String getPersId() {
  352. return persId;
  353. }
  354. public void setPersId(String persId) {
  355. this.persId = persId;
  356. }
  357. public Date getIntm() {
  358. return intm;
  359. }
  360. public void setIntm(Date intm) {
  361. this.intm = intm;
  362. }
  363. public Date getUptm() {
  364. return uptm;
  365. }
  366. public void setUptm(Date uptm) {
  367. this.uptm = uptm;
  368. }
  369. public String getDataStat() {
  370. return dataStat;
  371. }
  372. public void setDataStat(String dataStat) {
  373. this.dataStat = dataStat;
  374. }
  375. public String getState() {
  376. return state;
  377. }
  378. public void setState(String state) {
  379. this.state = state;
  380. }
  381. @Override
  382. public String toString() {
  383. return "BisInspIrrWas [" + "id=" + id + ", rgstrId=" + rgstrId + ", objId=" + objId + ", code=" + code + ", name=" + name + ", adCode=" + adCode + ", adName=" + adName + ", sour=" + sour + ", compDate=" + compDate + ", lockDisc=" + lockDisc + ", irrArea=" + irrArea + ", wasType=" + wasType + ", wasTypeNote=" + wasTypeNote + ", higStnType=" + higStnType + ", prjPbmArea=" + prjPbmArea + ", prjWhoTend=" + prjWhoTend + ", prjUsrType=" + prjUsrType + ", whoTend=" + whoTend + ", isTendRcrd=" + isTendRcrd + ", tendRcrdType=" + tendRcrdType + ", isRun=" + isRun + ", notRunType=" + notRunType + ", notRunNote=" + notRunNote + ", isCrrd=" + isCrrd + ", isBulAll=" + isBulAll + ", isCavity=" + isCavity + ", isSpg=" + isSpg + ", evaluate=" + evaluate + ", note=" + note + ", invsrName=" + invsrName + ", invsrPhone=" + invsrPhone + ", invsrTm=" + invsrTm + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + ", state=" + state + "]";
  384. }
  385. }