7ab31bbc177571d6b0f25d58925b748ca0093b1f.svn-base 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import cn.com.goldenwater.core.model.BaseBean;
  6. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  7. /**
  8. * entity:AttSwhsBaseCrrct
  9. *
  10. * @author lune
  11. * @date 2019-8-7
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class AttSwhsBaseCrrct extends BaseBean implements Serializable {
  15. @ApiModelProperty("主键id")
  16. private String id;
  17. @ApiModelProperty("注册表Id")
  18. private String rgstrId;
  19. @ApiModelProperty("地表水水源地代码")
  20. private String swhsCode;
  21. @ApiModelProperty("地表水水源地名称")
  22. private String swhsName;
  23. @ApiModelProperty("地表水水源地经度")
  24. private Double swhsLong;
  25. @ApiModelProperty("地表水水源地纬度")
  26. private Double swhsLat;
  27. @ApiModelProperty("地表水水源地所属行政区划编码")
  28. private String adCode;
  29. @ApiModelProperty("地表水水源地所在位置")
  30. private String swhsLoc;
  31. @ApiModelProperty("取水水源类型--水库 1湖泊 2河流 3其他 9")
  32. private String wainWasoType;
  33. @ApiModelProperty("水面面积km2")
  34. private Double watArea;
  35. @ApiModelProperty("取水口数量")
  36. private Long wainNum;
  37. @ApiModelProperty("主要取水用途--城乡生活 1城镇生活 2乡村生活 3")
  38. private String wainUse;
  39. @ApiModelProperty("供水对象类型分为工业、生活、公共、混合等类型")
  40. private String wasuObjType;
  41. @ApiModelProperty("主要供水城镇名称1")
  42. private String wasuTownName;
  43. @ApiModelProperty("主要供水城镇名称2")
  44. private String wasuTownName2;
  45. @ApiModelProperty("主要供水城镇名称3")
  46. private String wasuTownName3;
  47. @ApiModelProperty("设计年取水量万m3")
  48. private Double desAnnWain;
  49. @ApiModelProperty("设计年供水人口万人")
  50. private Double desAnnWasuPop;
  51. @ApiModelProperty("投入运行年")
  52. private String runYear;
  53. @ApiModelProperty("取水河流名称")
  54. private String wintRvName;
  55. @ApiModelProperty("取水湖泊名称")
  56. private String wintLakeName;
  57. @ApiModelProperty("取水水库名称")
  58. private String wintRsName;
  59. @ApiModelProperty("水质目标“1”表示Ⅰ类水质目标,“2”表示Ⅱ类水质目标,“3”表示Ⅲ类水质目标,“4”表示Ⅳ类水质目标,“5”表示Ⅴ类水质目标,“6”表示劣Ⅴ类水质目标。")
  60. private String waquGoal;
  61. @ApiModelProperty("水源地水质是否监测--1:是;2:否")
  62. private String ifMonWqua;
  63. @ApiModelProperty("水源地现状-水质类别“1”表示Ⅰ类水质目标,“2”表示Ⅱ类水质目标,“3”表示Ⅲ类水质目标,“4”表示Ⅳ类水质目标,“5”表示Ⅴ类水质目标,“6”表示劣Ⅴ类水质目标。")
  64. private String wquaCat;
  65. @ApiModelProperty("水源地水质-是否达标--1:是;2:否")
  66. private String ifWquaUptoSta;
  67. @ApiModelProperty("是否划分水源保护区--1:是;2:否")
  68. private String ifWsProt;
  69. @ApiModelProperty("一级保护区水域面积(km2)")
  70. private Double watArea1stProt;
  71. @ApiModelProperty("一级保护区陆域面积(km2)")
  72. private Double landArea1stProt;
  73. @ApiModelProperty("二级保护区水域面积(km2)")
  74. private Double watArea2ndProt;
  75. @ApiModelProperty("二级保护区陆域面积(km2)")
  76. private Double landArea2ndProt;
  77. @ApiModelProperty("准保护区面积(km2)")
  78. private Double qusProt;
  79. @ApiModelProperty("管理单位名称")
  80. private String insName;
  81. @ApiModelProperty("管理单位电话")
  82. private String insTel;
  83. @ApiModelProperty("管理单位联系人")
  84. private String insPers;
  85. @ApiModelProperty("水行政管理部门名称")
  86. private String insWaterUnit;
  87. @ApiModelProperty("水行政主管部门联系人")
  88. private String insWaterPers;
  89. @ApiModelProperty("水行政主管部门电话")
  90. private String insWaterTel;
  91. @ApiModelProperty("管理单位所属行业")
  92. private String tra;
  93. @ApiModelProperty("人员id")
  94. private String persId;
  95. @ApiModelProperty("备注")
  96. private String note;
  97. @ApiModelProperty("记录生效时间")
  98. private Date effDate;
  99. @ApiModelProperty("记录失效时间")
  100. private Date exprDate;
  101. @ApiModelProperty("地表水水源地经度--高德")
  102. private Double swhsLongGd;
  103. @ApiModelProperty("地表水水源地纬度--高德")
  104. private Double swhsLatGd;
  105. @ApiModelProperty("显示等级")
  106. private String displayLevel;
  107. @ApiModelProperty("创建时间")
  108. private Date inTm;
  109. @ApiModelProperty("更新时间")
  110. private Date upTm;
  111. @ApiModelProperty("行政区划名称")
  112. private String adName;
  113. public AttSwhsBaseCrrct() {
  114. }
  115. @Override
  116. public String getRgstrId() {
  117. return rgstrId;
  118. }
  119. @Override
  120. public void setRgstrId(String rgstrId) {
  121. this.rgstrId = rgstrId;
  122. }
  123. public String getAdName() {
  124. return adName;
  125. }
  126. public void setAdName(String adName) {
  127. this.adName = adName;
  128. }
  129. public String getInsTel() {
  130. return insTel;
  131. }
  132. public void setInsTel(String insTel) {
  133. this.insTel = insTel;
  134. }
  135. public String getInsPers() {
  136. return insPers;
  137. }
  138. public void setInsPers(String insPers) {
  139. this.insPers = insPers;
  140. }
  141. public String getInsWaterUnit() {
  142. return insWaterUnit;
  143. }
  144. public void setInsWaterUnit(String insWaterUnit) {
  145. this.insWaterUnit = insWaterUnit;
  146. }
  147. public String getInsWaterPers() {
  148. return insWaterPers;
  149. }
  150. public void setInsWaterPers(String insWaterPers) {
  151. this.insWaterPers = insWaterPers;
  152. }
  153. public String getInsWaterTel() {
  154. return insWaterTel;
  155. }
  156. public void setInsWaterTel(String insWaterTel) {
  157. this.insWaterTel = insWaterTel;
  158. }
  159. public String getId() {
  160. return id;
  161. }
  162. public void setId(String id) {
  163. this.id = id;
  164. }
  165. public String getSwhsCode() {
  166. return swhsCode;
  167. }
  168. public void setSwhsCode(String swhsCode) {
  169. this.swhsCode = swhsCode;
  170. }
  171. public String getSwhsName() {
  172. return swhsName;
  173. }
  174. public void setSwhsName(String swhsName) {
  175. this.swhsName = swhsName;
  176. }
  177. public Double getSwhsLong() {
  178. return swhsLong;
  179. }
  180. public void setSwhsLong(Double swhsLong) {
  181. this.swhsLong = swhsLong;
  182. }
  183. public Double getSwhsLat() {
  184. return swhsLat;
  185. }
  186. public void setSwhsLat(Double swhsLat) {
  187. this.swhsLat = swhsLat;
  188. }
  189. public String getAdCode() {
  190. return adCode;
  191. }
  192. public void setAdCode(String adCode) {
  193. this.adCode = adCode;
  194. }
  195. public String getSwhsLoc() {
  196. return swhsLoc;
  197. }
  198. public void setSwhsLoc(String swhsLoc) {
  199. this.swhsLoc = swhsLoc;
  200. }
  201. public String getWainWasoType() {
  202. return wainWasoType;
  203. }
  204. public void setWainWasoType(String wainWasoType) {
  205. this.wainWasoType = wainWasoType;
  206. }
  207. public Double getWatArea() {
  208. return watArea;
  209. }
  210. public void setWatArea(Double watArea) {
  211. this.watArea = watArea;
  212. }
  213. public Long getWainNum() {
  214. return wainNum;
  215. }
  216. public void setWainNum(Long wainNum) {
  217. this.wainNum = wainNum;
  218. }
  219. public String getWainUse() {
  220. return wainUse;
  221. }
  222. public void setWainUse(String wainUse) {
  223. this.wainUse = wainUse;
  224. }
  225. public String getWasuObjType() {
  226. return wasuObjType;
  227. }
  228. public void setWasuObjType(String wasuObjType) {
  229. this.wasuObjType = wasuObjType;
  230. }
  231. public String getWasuTownName() {
  232. return wasuTownName;
  233. }
  234. public void setWasuTownName(String wasuTownName) {
  235. this.wasuTownName = wasuTownName;
  236. }
  237. public String getWasuTownName2() {
  238. return wasuTownName2;
  239. }
  240. public void setWasuTownName2(String wasuTownName2) {
  241. this.wasuTownName2 = wasuTownName2;
  242. }
  243. public String getWasuTownName3() {
  244. return wasuTownName3;
  245. }
  246. public void setWasuTownName3(String wasuTownName3) {
  247. this.wasuTownName3 = wasuTownName3;
  248. }
  249. public Double getDesAnnWain() {
  250. return desAnnWain;
  251. }
  252. public void setDesAnnWain(Double desAnnWain) {
  253. this.desAnnWain = desAnnWain;
  254. }
  255. public Double getDesAnnWasuPop() {
  256. return desAnnWasuPop;
  257. }
  258. public void setDesAnnWasuPop(Double desAnnWasuPop) {
  259. this.desAnnWasuPop = desAnnWasuPop;
  260. }
  261. public String getRunYear() {
  262. return runYear;
  263. }
  264. public void setRunYear(String runYear) {
  265. this.runYear = runYear;
  266. }
  267. public String getWintRvName() {
  268. return wintRvName;
  269. }
  270. public void setWintRvName(String wintRvName) {
  271. this.wintRvName = wintRvName;
  272. }
  273. public String getWintLakeName() {
  274. return wintLakeName;
  275. }
  276. public void setWintLakeName(String wintLakeName) {
  277. this.wintLakeName = wintLakeName;
  278. }
  279. public String getWintRsName() {
  280. return wintRsName;
  281. }
  282. public void setWintRsName(String wintRsName) {
  283. this.wintRsName = wintRsName;
  284. }
  285. public String getWaquGoal() {
  286. return waquGoal;
  287. }
  288. public void setWaquGoal(String waquGoal) {
  289. this.waquGoal = waquGoal;
  290. }
  291. public String getIfMonWqua() {
  292. return ifMonWqua;
  293. }
  294. public void setIfMonWqua(String ifMonWqua) {
  295. this.ifMonWqua = ifMonWqua;
  296. }
  297. public String getWquaCat() {
  298. return wquaCat;
  299. }
  300. public void setWquaCat(String wquaCat) {
  301. this.wquaCat = wquaCat;
  302. }
  303. public String getIfWquaUptoSta() {
  304. return ifWquaUptoSta;
  305. }
  306. public void setIfWquaUptoSta(String ifWquaUptoSta) {
  307. this.ifWquaUptoSta = ifWquaUptoSta;
  308. }
  309. public String getIfWsProt() {
  310. return ifWsProt;
  311. }
  312. public void setIfWsProt(String ifWsProt) {
  313. this.ifWsProt = ifWsProt;
  314. }
  315. public Double getWatArea1stProt() {
  316. return watArea1stProt;
  317. }
  318. public void setWatArea1stProt(Double watArea1stProt) {
  319. this.watArea1stProt = watArea1stProt;
  320. }
  321. public Double getLandArea1stProt() {
  322. return landArea1stProt;
  323. }
  324. public void setLandArea1stProt(Double landArea1stProt) {
  325. this.landArea1stProt = landArea1stProt;
  326. }
  327. public Double getWatArea2ndProt() {
  328. return watArea2ndProt;
  329. }
  330. public void setWatArea2ndProt(Double watArea2ndProt) {
  331. this.watArea2ndProt = watArea2ndProt;
  332. }
  333. public Double getLandArea2ndProt() {
  334. return landArea2ndProt;
  335. }
  336. public void setLandArea2ndProt(Double landArea2ndProt) {
  337. this.landArea2ndProt = landArea2ndProt;
  338. }
  339. public Double getQusProt() {
  340. return qusProt;
  341. }
  342. public void setQusProt(Double qusProt) {
  343. this.qusProt = qusProt;
  344. }
  345. public String getInsName() {
  346. return insName;
  347. }
  348. public void setInsName(String insName) {
  349. this.insName = insName;
  350. }
  351. public String getTra() {
  352. return tra;
  353. }
  354. public void setTra(String tra) {
  355. this.tra = tra;
  356. }
  357. public String getPersId() {
  358. return persId;
  359. }
  360. public void setPersId(String persId) {
  361. this.persId = persId;
  362. }
  363. public String getNote() {
  364. return note;
  365. }
  366. public void setNote(String note) {
  367. this.note = note;
  368. }
  369. public Date getEffDate() {
  370. return effDate;
  371. }
  372. public void setEffDate(Date effDate) {
  373. this.effDate = effDate;
  374. }
  375. public Date getExprDate() {
  376. return exprDate;
  377. }
  378. public void setExprDate(Date exprDate) {
  379. this.exprDate = exprDate;
  380. }
  381. public Double getSwhsLongGd() {
  382. return swhsLongGd;
  383. }
  384. public void setSwhsLongGd(Double swhsLongGd) {
  385. this.swhsLongGd = swhsLongGd;
  386. }
  387. public Double getSwhsLatGd() {
  388. return swhsLatGd;
  389. }
  390. public void setSwhsLatGd(Double swhsLatGd) {
  391. this.swhsLatGd = swhsLatGd;
  392. }
  393. public String getDisplayLevel() {
  394. return displayLevel;
  395. }
  396. public void setDisplayLevel(String displayLevel) {
  397. this.displayLevel = displayLevel;
  398. }
  399. public Date getInTm() {
  400. return inTm;
  401. }
  402. public void setInTm(Date inTm) {
  403. this.inTm = inTm;
  404. }
  405. public Date getUpTm() {
  406. return upTm;
  407. }
  408. public void setUpTm(Date upTm) {
  409. this.upTm = upTm;
  410. }
  411. @Override
  412. public String toString() {
  413. return "AttSwhsBaseCrrct [" + "id=" + id + ", swhsCode=" + swhsCode + ", swhsName=" + swhsName + ", swhsLong=" + swhsLong + ", swhsLat=" + swhsLat + ", adCode=" + adCode + ", swhsLoc=" + swhsLoc + ", wainWasoType=" + wainWasoType + ", watArea=" + watArea + ", wainNum=" + wainNum + ", wainUse=" + wainUse + ", wasuObjType=" + wasuObjType + ", wasuTownName=" + wasuTownName + ", wasuTownName2=" + wasuTownName2 + ", wasuTownName3=" + wasuTownName3 + ", desAnnWain=" + desAnnWain + ", desAnnWasuPop=" + desAnnWasuPop + ", runYear=" + runYear + ", wintRvName=" + wintRvName + ", wintLakeName=" + wintLakeName + ", wintRsName=" + wintRsName + ", waquGoal=" + waquGoal + ", ifMonWqua=" + ifMonWqua + ", wquaCat=" + wquaCat + ", ifWquaUptoSta=" + ifWquaUptoSta + ", ifWsProt=" + ifWsProt + ", watArea1stProt=" + watArea1stProt + ", landArea1stProt=" + landArea1stProt + ", watArea2ndProt=" + watArea2ndProt + ", landArea2ndProt=" + landArea2ndProt + ", qusProt=" + qusProt + ", insName=" + insName + ", tra=" + tra + ", persId=" + persId + ", note=" + note + ", effDate=" + effDate + ", exprDate=" + exprDate + ", swhsLongGd=" + swhsLongGd + ", swhsLatGd=" + swhsLatGd + ", displayLevel=" + displayLevel + ", inTm=" + inTm + ", upTm=" + upTm + "]";
  414. }
  415. }