d789e1cd98518f9ec50ee0030312d93ab3081a15.svn-base 9.8 KB

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