50f028ae5902e9670618ad0678faec17e9182ade.svn-base 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiParam;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import io.swagger.annotations.ApiModel;
  6. import java.io.Serializable;
  7. /**
  8. * BisInspWateruserInfoParam
  9. *
  10. * @author zhengdafei
  11. * @date 2019-3-19
  12. */
  13. public class BisInspWateruserInfoParam extends PageParam implements Serializable {
  14. private static final long serialVersionUID = 1L;
  15. // 引水工程名称
  16. @ApiParam(value = "引水工程名称")
  17. @ApiModelProperty(value = "引水工程名称")
  18. private String cwsName;
  19. // 电话
  20. @ApiParam(value = "电话")
  21. @ApiModelProperty(value = "电话")
  22. private String telphone;
  23. // 对应工程
  24. @ApiParam(value = "对应工程")
  25. @ApiModelProperty(value = "对应工程")
  26. private String cwsCode;
  27. // 水质是否良好
  28. @ApiParam(value = "水质是否良好")
  29. @ApiModelProperty(value = "水质是否良好")
  30. private String isQualityGood;
  31. // 是否水质存在问题
  32. @ApiParam(value = "是否水质存在问题")
  33. @ApiModelProperty(value = "是否水质存在问题")
  34. private String isQualityProblem;
  35. // 水质存在问题
  36. @ApiParam(value = "水质存在问题")
  37. @ApiModelProperty(value = "水质存在问题")
  38. private String qualityProblem;
  39. // 是否供水入户
  40. @ApiParam(value = "是否供水入户")
  41. @ApiModelProperty(value = "是否供水入户")
  42. private String isSplyHome;
  43. // 是否24小时供水
  44. @ApiParam(value = "是否24小时供水")
  45. @ApiModelProperty(value = "是否24小时供水")
  46. private String is24hSupply;
  47. // 是否水量存在问题
  48. @ApiParam(value = "是否水量存在问题")
  49. @ApiModelProperty(value = "是否水量存在问题")
  50. private String isWaterProblem;
  51. // 水量存在问题
  52. @ApiParam(value = "水量存在问题")
  53. @ApiModelProperty(value = "水量存在问题")
  54. private String waterProblem;
  55. // 是否计量收费
  56. @ApiParam(value = "是否计量收费")
  57. @ApiModelProperty(value = "是否计量收费")
  58. private String isCalFee;
  59. // 收费是否存在问题
  60. @ApiParam(value = "收费是否存在问题")
  61. @ApiModelProperty(value = "收费是否存在问题")
  62. private String isFeeProblem;
  63. // 收费存在问题
  64. @ApiParam(value = "收费存在问题")
  65. @ApiModelProperty(value = "收费存在问题")
  66. private String feeProblem;
  67. // 是否供水存在问题
  68. @ApiParam(value = "是否供水存在问题")
  69. @ApiModelProperty(value = "是否供水存在问题")
  70. private String isSplyProblem;
  71. // 供水存在问题
  72. @ApiParam(value = "供水存在问题")
  73. @ApiModelProperty(value = "供水存在问题")
  74. private String splyProblem;
  75. // 总体评价
  76. @ApiParam(value = "总体评价")
  77. @ApiModelProperty(value = "总体评价")
  78. private String evaluate;
  79. // 暗访日期
  80. @ApiParam(value = "暗访日期")
  81. @ApiModelProperty(value = "暗访日期")
  82. private String visitDate;
  83. // 记录人员ID
  84. @ApiParam(value = "记录人员ID")
  85. @ApiModelProperty(value = "记录人员ID")
  86. private String recPersId;
  87. // 记录人员
  88. @ApiParam(value = "记录人员")
  89. @ApiModelProperty(value = "记录人员")
  90. private String recPers2;
  91. // 记录人员电话
  92. @ApiParam(value = "记录人员电话")
  93. @ApiModelProperty(value = "记录人员电话")
  94. private String recPersTel;
  95. // 创建时间
  96. @ApiParam(value = "创建时间")
  97. @ApiModelProperty(value = "创建时间")
  98. private String createTime;
  99. // 修改时间
  100. @ApiParam(value = "修改时间")
  101. @ApiModelProperty(value = "修改时间")
  102. private String updateTime;
  103. // 状态
  104. @ApiParam(value = "状态")
  105. @ApiModelProperty(value = "状态")
  106. private String status;
  107. // 村代码
  108. @ApiParam(value = "村代码")
  109. @ApiModelProperty(value = "村代码")
  110. private String villageCode;
  111. // 用水户ID
  112. @ApiParam(value = "用水户ID")
  113. @ApiModelProperty(value = "用水户ID")
  114. private String prsnWaterId;
  115. // 农村饮水工程登记表ID
  116. @ApiParam(value = "农村饮水工程登记表ID")
  117. @ApiModelProperty(value = "农村饮水工程登记表ID")
  118. private String engId;
  119. // 调查地点
  120. @ApiParam(value = "调查地点")
  121. @ApiModelProperty(value = "调查地点")
  122. private String villageNm;
  123. // 户主姓名
  124. @ApiParam(value = "户主姓名")
  125. @ApiModelProperty(value = "户主姓名")
  126. private String userNm;
  127. //是否定时供水 0 否 1 是
  128. @ApiParam(value = "是否定时供水 0 否 1 是(长度:1,可为空:Y)")
  129. @ApiModelProperty(value = "是否定时供水 0 否 1 是(长度:1,可为空:Y)")
  130. private String isHrSupply;
  131. //定时供水备注
  132. @ApiParam(value = "定时供水备注(长度:400,可为空:Y)")
  133. @ApiModelProperty(value = "定时供水备注(长度:400,可为空:Y)")
  134. private String hrNote;
  135. //单位水价
  136. @ApiParam(value = "单位水价(精度:10,小数位:2,可为空:Y)")
  137. @ApiModelProperty(value = "单位水价(精度:10,小数位:2,可为空:Y)")
  138. private Double waterFee;
  139. private String otherProblem ;
  140. public String getOtherProblem() {
  141. return otherProblem;
  142. }
  143. public void setOtherProblem(String otherProblem) {
  144. this.otherProblem = otherProblem;
  145. }
  146. public BisInspWateruserInfoParam() {
  147. }
  148. public String getCwsName() {
  149. return cwsName;
  150. }
  151. public void setCwsName(String cwsName) {
  152. this.cwsName = cwsName;
  153. }
  154. public String getTelphone() {
  155. return telphone;
  156. }
  157. public void setTelphone(String telphone) {
  158. this.telphone = telphone;
  159. }
  160. public String getCwsCode() {
  161. return cwsCode;
  162. }
  163. public void setCwsCode(String cwsCode) {
  164. this.cwsCode = cwsCode;
  165. }
  166. public String getIsQualityGood() {
  167. return isQualityGood;
  168. }
  169. public void setIsQualityGood(String isQualityGood) {
  170. this.isQualityGood = isQualityGood;
  171. }
  172. public String getIsQualityProblem() {
  173. return isQualityProblem;
  174. }
  175. public void setIsQualityProblem(String isQualityProblem) {
  176. this.isQualityProblem = isQualityProblem;
  177. }
  178. public String getQualityProblem() {
  179. return qualityProblem;
  180. }
  181. public void setQualityProblem(String qualityProblem) {
  182. this.qualityProblem = qualityProblem;
  183. }
  184. public String getIsSplyHome() {
  185. return isSplyHome;
  186. }
  187. public void setIsSplyHome(String isSplyHome) {
  188. this.isSplyHome = isSplyHome;
  189. }
  190. public String getIs24hSupply() {
  191. return is24hSupply;
  192. }
  193. public void setIs24hSupply(String is24hSupply) {
  194. this.is24hSupply = is24hSupply;
  195. }
  196. public String getIsWaterProblem() {
  197. return isWaterProblem;
  198. }
  199. public void setIsWaterProblem(String isWaterProblem) {
  200. this.isWaterProblem = isWaterProblem;
  201. }
  202. public String getWaterProblem() {
  203. return waterProblem;
  204. }
  205. public void setWaterProblem(String waterProblem) {
  206. this.waterProblem = waterProblem;
  207. }
  208. public String getIsCalFee() {
  209. return isCalFee;
  210. }
  211. public void setIsCalFee(String isCalFee) {
  212. this.isCalFee = isCalFee;
  213. }
  214. public String getIsFeeProblem() {
  215. return isFeeProblem;
  216. }
  217. public void setIsFeeProblem(String isFeeProblem) {
  218. this.isFeeProblem = isFeeProblem;
  219. }
  220. public String getFeeProblem() {
  221. return feeProblem;
  222. }
  223. public void setFeeProblem(String feeProblem) {
  224. this.feeProblem = feeProblem;
  225. }
  226. public String getIsSplyProblem() {
  227. return isSplyProblem;
  228. }
  229. public void setIsSplyProblem(String isSplyProblem) {
  230. this.isSplyProblem = isSplyProblem;
  231. }
  232. public String getSplyProblem() {
  233. return splyProblem;
  234. }
  235. public void setSplyProblem(String splyProblem) {
  236. this.splyProblem = splyProblem;
  237. }
  238. public String getEvaluate() {
  239. return evaluate;
  240. }
  241. public void setEvaluate(String evaluate) {
  242. this.evaluate = evaluate;
  243. }
  244. public String getVisitDate() {
  245. return visitDate;
  246. }
  247. public void setVisitDate(String visitDate) {
  248. this.visitDate = visitDate;
  249. }
  250. public String getRecPersId() {
  251. return recPersId;
  252. }
  253. public void setRecPersId(String recPersId) {
  254. this.recPersId = recPersId;
  255. }
  256. public String getRecPers2() {
  257. return recPers2;
  258. }
  259. public void setRecPers2(String recPers2) {
  260. this.recPers2 = recPers2;
  261. }
  262. public String getRecPersTel() {
  263. return recPersTel;
  264. }
  265. public void setRecPersTel(String recPersTel) {
  266. this.recPersTel = recPersTel;
  267. }
  268. public String getCreateTime() {
  269. return createTime;
  270. }
  271. public void setCreateTime(String createTime) {
  272. this.createTime = createTime;
  273. }
  274. public String getUpdateTime() {
  275. return updateTime;
  276. }
  277. public void setUpdateTime(String updateTime) {
  278. this.updateTime = updateTime;
  279. }
  280. public String getStatus() {
  281. return status;
  282. }
  283. public void setStatus(String status) {
  284. this.status = status;
  285. }
  286. public String getVillageCode() {
  287. return villageCode;
  288. }
  289. public void setVillageCode(String villageCode) {
  290. this.villageCode = villageCode;
  291. }
  292. public String getPrsnWaterId() {
  293. return prsnWaterId;
  294. }
  295. public void setPrsnWaterId(String prsnWaterId) {
  296. this.prsnWaterId = prsnWaterId;
  297. }
  298. public String getEngId() {
  299. return engId;
  300. }
  301. public void setEngId(String engId) {
  302. this.engId = engId;
  303. }
  304. public String getVillageNm() {
  305. return villageNm;
  306. }
  307. public void setVillageNm(String villageNm) {
  308. this.villageNm = villageNm;
  309. }
  310. public String getUserNm() {
  311. return userNm;
  312. }
  313. public void setUserNm(String userNm) {
  314. this.userNm = userNm;
  315. }
  316. public String getIsHrSupply() {
  317. return isHrSupply;
  318. }
  319. public void setIsHrSupply(String isHrSupply) {
  320. this.isHrSupply = isHrSupply;
  321. }
  322. public Double getWaterFee() {
  323. return waterFee;
  324. }
  325. public void setWaterFee(Double waterFee) {
  326. this.waterFee = waterFee;
  327. }
  328. public String getHrNote() {
  329. return hrNote;
  330. }
  331. public void setHrNote(String hrNote) {
  332. this.hrNote = hrNote;
  333. }
  334. }