b312f56058a44b954bd9e9565e986ebedf7e6ccd.svn-base 12 KB

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