34d9cb0c32f860a4477087f53f2c0bc0536f43ec.svn-base 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  1. package cn.com.goldenwater.dcproj.dto;
  2. import io.swagger.annotations.ApiModelProperty;
  3. /**
  4. * Created by 61618 on 2019/4/23.
  5. */
  6. public class ProSourceProtectDto {
  7. private String objId;
  8. // 水源地编码
  9. @ApiModelProperty("水源地编码")
  10. private String wtsrCd;
  11. // 未划定水源保护区或保护范围
  12. @ApiModelProperty("未划定水源保护区或保护范围")
  13. private String proPlbm;
  14. // 不存在水源保护标志
  15. @ApiModelProperty("不存在水源保护标志")
  16. private String mkPlbm;
  17. // 周边存在污染源
  18. @ApiModelProperty("周边存在污染源")
  19. private String pollPlbm;
  20. // 不存在应急备用水源
  21. private Double lgtdpc;
  22. private Double lttdpc;
  23. // 供水工程水源地ID
  24. private String engSurId;
  25. // 农村饮水工程登记表ID
  26. private String engId;
  27. // 水源地名称
  28. @ApiModelProperty("水源地名称")
  29. private String waterSourceNm;
  30. // 所在地
  31. @ApiModelProperty("所在地")
  32. private String villageNm;
  33. // 供水工程
  34. @ApiModelProperty("供水工程编码")
  35. private String cwsCode;
  36. // 设计取水规模(m3/d)
  37. @ApiModelProperty("取水规模(m3/d)")
  38. private Double planInsAmount;
  39. // 水源类型
  40. private String sourceType;
  41. // 是否划定水源保护区或保护范围
  42. private String isProtectArea;
  43. // 水源水质评价
  44. private String waterQuality;
  45. // 是否有水源保护标志
  46. private String isProtectMark;
  47. // 周边是否有污染源
  48. private String isPollSource;
  49. // 是否有应急备用水源
  50. private String isSpare;
  51. // 暗访日期
  52. private String visitDate;
  53. // 记录人员ID
  54. private String recPersId;
  55. // 记录人员
  56. private String recPers2;
  57. // 记录人员电话
  58. private String recPersTel;
  59. // 创建时间
  60. private String createTime;
  61. // 修改时间
  62. private String updateTime;
  63. // 状态
  64. private String status;
  65. private String src;
  66. private String adCode;
  67. //周边污染源备注
  68. private String pollNote;
  69. @ApiModelProperty(value = "高德经度")
  70. private Double centerXGd;
  71. @ApiModelProperty(value = "高德纬度")
  72. private Double centerYGd;
  73. public Double getCenterXGd() {
  74. return centerXGd;
  75. }
  76. public void setCenterXGd(Double centerXGd) {
  77. this.centerXGd = centerXGd;
  78. }
  79. public Double getCenterYGd() {
  80. return centerYGd;
  81. }
  82. public void setCenterYGd(Double centerYGd) {
  83. this.centerYGd = centerYGd;
  84. }
  85. public String getObjId() {
  86. return objId;
  87. }
  88. public void setObjId(String objId) {
  89. this.objId = objId;
  90. }
  91. public String getWtsrCd() {
  92. return wtsrCd;
  93. }
  94. public void setWtsrCd(String wtsrCd) {
  95. this.wtsrCd = wtsrCd;
  96. }
  97. public String getProPlbm() {
  98. return proPlbm;
  99. }
  100. public void setProPlbm(String proPlbm) {
  101. this.proPlbm = proPlbm;
  102. }
  103. public String getMkPlbm() {
  104. return mkPlbm;
  105. }
  106. public void setMkPlbm(String mkPlbm) {
  107. this.mkPlbm = mkPlbm;
  108. }
  109. public String getPollPlbm() {
  110. return pollPlbm;
  111. }
  112. public void setPollPlbm(String pollPlbm) {
  113. this.pollPlbm = pollPlbm;
  114. }
  115. public Double getLgtdpc() {
  116. return lgtdpc;
  117. }
  118. public void setLgtdpc(Double lgtdpc) {
  119. this.lgtdpc = lgtdpc;
  120. }
  121. public Double getLttdpc() {
  122. return lttdpc;
  123. }
  124. public void setLttdpc(Double lttdpc) {
  125. this.lttdpc = lttdpc;
  126. }
  127. public String getEngSurId() {
  128. return engSurId;
  129. }
  130. public void setEngSurId(String engSurId) {
  131. this.engSurId = engSurId;
  132. }
  133. public String getEngId() {
  134. return engId;
  135. }
  136. public void setEngId(String engId) {
  137. this.engId = engId;
  138. }
  139. public String getWaterSourceNm() {
  140. return waterSourceNm;
  141. }
  142. public void setWaterSourceNm(String waterSourceNm) {
  143. this.waterSourceNm = waterSourceNm;
  144. }
  145. public String getVillageNm() {
  146. return villageNm;
  147. }
  148. public void setVillageNm(String villageNm) {
  149. this.villageNm = villageNm;
  150. }
  151. public String getCwsCode() {
  152. return cwsCode;
  153. }
  154. public void setCwsCode(String cwsCode) {
  155. this.cwsCode = cwsCode;
  156. }
  157. public Double getPlanInsAmount() {
  158. return planInsAmount;
  159. }
  160. public void setPlanInsAmount(Double planInsAmount) {
  161. this.planInsAmount = planInsAmount;
  162. }
  163. public String getSourceType() {
  164. return sourceType;
  165. }
  166. public void setSourceType(String sourceType) {
  167. this.sourceType = sourceType;
  168. }
  169. public String getIsProtectArea() {
  170. return isProtectArea;
  171. }
  172. public void setIsProtectArea(String isProtectArea) {
  173. this.isProtectArea = isProtectArea;
  174. }
  175. public String getWaterQuality() {
  176. return waterQuality;
  177. }
  178. public void setWaterQuality(String waterQuality) {
  179. this.waterQuality = waterQuality;
  180. }
  181. public String getIsProtectMark() {
  182. return isProtectMark;
  183. }
  184. public void setIsProtectMark(String isProtectMark) {
  185. this.isProtectMark = isProtectMark;
  186. }
  187. public String getIsPollSource() {
  188. return isPollSource;
  189. }
  190. public void setIsPollSource(String isPollSource) {
  191. this.isPollSource = isPollSource;
  192. }
  193. public String getIsSpare() {
  194. return isSpare;
  195. }
  196. public void setIsSpare(String isSpare) {
  197. this.isSpare = isSpare;
  198. }
  199. public String getVisitDate() {
  200. return visitDate;
  201. }
  202. public void setVisitDate(String visitDate) {
  203. this.visitDate = visitDate;
  204. }
  205. public String getRecPersId() {
  206. return recPersId;
  207. }
  208. public void setRecPersId(String recPersId) {
  209. this.recPersId = recPersId;
  210. }
  211. public String getRecPers2() {
  212. return recPers2;
  213. }
  214. public void setRecPers2(String recPers2) {
  215. this.recPers2 = recPers2;
  216. }
  217. public String getRecPersTel() {
  218. return recPersTel;
  219. }
  220. public void setRecPersTel(String recPersTel) {
  221. this.recPersTel = recPersTel;
  222. }
  223. public String getCreateTime() {
  224. return createTime;
  225. }
  226. public void setCreateTime(String createTime) {
  227. this.createTime = createTime;
  228. }
  229. public String getUpdateTime() {
  230. return updateTime;
  231. }
  232. public void setUpdateTime(String updateTime) {
  233. this.updateTime = updateTime;
  234. }
  235. public String getStatus() {
  236. return status;
  237. }
  238. public void setStatus(String status) {
  239. this.status = status;
  240. }
  241. public String getSrc() {
  242. return src;
  243. }
  244. public void setSrc(String src) {
  245. this.src = src;
  246. }
  247. public String getAdCode() {
  248. return adCode;
  249. }
  250. public void setAdCode(String adCode) {
  251. this.adCode = adCode;
  252. }
  253. public String getPollNote() {
  254. return pollNote;
  255. }
  256. public void setPollNote(String pollNote) {
  257. this.pollNote = pollNote;
  258. }
  259. @Override
  260. public String toString() {
  261. return "ProSourceProtectDto{" +
  262. "wtsrCd='" + wtsrCd + '\'' +
  263. ", proPlbm='" + proPlbm + '\'' +
  264. ", mkPlbm='" + mkPlbm + '\'' +
  265. ", pollPlbm='" + pollPlbm + '\'' +
  266. ", lgtdpc=" + lgtdpc +
  267. ", lttdpc=" + lttdpc +
  268. ", engSurId='" + engSurId + '\'' +
  269. ", engId='" + engId + '\'' +
  270. ", waterSourceNm='" + waterSourceNm + '\'' +
  271. ", villageNm='" + villageNm + '\'' +
  272. ", cwsCode='" + cwsCode + '\'' +
  273. ", planInsAmount=" + planInsAmount +
  274. ", sourceType='" + sourceType + '\'' +
  275. ", isProtectArea='" + isProtectArea + '\'' +
  276. ", waterQuality='" + waterQuality + '\'' +
  277. ", isProtectMark='" + isProtectMark + '\'' +
  278. ", isPollSource='" + isPollSource + '\'' +
  279. ", isSpare='" + isSpare + '\'' +
  280. ", visitDate='" + visitDate + '\'' +
  281. ", recPersId='" + recPersId + '\'' +
  282. ", recPers2='" + recPers2 + '\'' +
  283. ", recPersTel='" + recPersTel + '\'' +
  284. ", createTime='" + createTime + '\'' +
  285. ", updateTime='" + updateTime + '\'' +
  286. ", status='" + status + '\'' +
  287. ", src='" + src + '\'' +
  288. ", adCode='" + adCode + '\'' +
  289. ", pollNote='" + pollNote + '\'' +
  290. '}';
  291. }
  292. }