c2e517d7743f3695de9ff1186fdaa9657c693ea2.svn-base 10 KB

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