122f88c86b1249273a4622fadadcb14634ac6d15.svn-base 7.5 KB

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