840d25f6987ac700684b8def0c0dcd83f6b9793b.svn-base 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. /**
  8. * entity:BisNewWateruserInfo
  9. *
  10. * @author lune
  11. * @date 2020-3-31
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class BisNewWateruserInfo extends BaseBean implements Serializable {
  15. private Double lgtd;
  16. private Double lttd;
  17. private Double lgtdpc;
  18. private Double lttdpc;
  19. @ApiModelProperty("水量是否够用")
  20. private String isWaterReach;
  21. @ApiModelProperty("两步制水价价格,计量水价存放")
  22. private String jiliangPriceTwo;
  23. @ApiModelProperty("两步制水价价格,固定水价存放")
  24. private String gudingPriceTwo;
  25. @ApiModelProperty("1为月元。户/2为月人。户")
  26. private String gudingPriceDw;
  27. @ApiModelProperty("固定水价,以及两步制水价固定水价部分")
  28. private String gudingPrice;
  29. @ApiModelProperty("存放限制额度(两步制水价限额)")
  30. private String xianEPrice;
  31. @ApiModelProperty("单一制水价价格,计量水价存放,水费类型1,4存放")
  32. private String jiliangPrice;
  33. @ApiModelProperty("阶梯水价1")
  34. private String jietiPriceOne;
  35. @ApiModelProperty("阶梯水价2")
  36. private String jietiPriceTwo;
  37. @ApiModelProperty("阶梯水价3")
  38. private String jietiPriceThree;
  39. @ApiModelProperty("阶梯水价,阶梯限额1")
  40. private String jietiXianeOne;
  41. @ApiModelProperty("阶梯水价,阶梯限额2")
  42. private String jietiXianeTwo;
  43. @ApiModelProperty("阶梯水价,阶梯限额3")
  44. private String jietiXianeThree;
  45. @ApiModelProperty("人饮督查登记表id")
  46. private String regstrId;
  47. @ApiModelProperty("用水户ID")
  48. private String id;
  49. @ApiModelProperty("行政村编码")
  50. private String adCode;
  51. @ApiModelProperty("调查地点,村组")
  52. private String villageNm;
  53. @ApiModelProperty("户主姓名")
  54. private String userNm;
  55. @ApiModelProperty("电话")
  56. private String telphone;
  57. @ApiModelProperty("水质是否良好,1是,2否")
  58. private String isQualityGood;
  59. @ApiModelProperty("水质存在问题")
  60. private String qualityProblem;
  61. @ApiModelProperty("是否供水入户,1是,2否")
  62. private String isSplyHome;
  63. @ApiModelProperty("是否24小时供水,1是,2否")
  64. private String is24hSupply;
  65. @ApiModelProperty("水量存在问题")
  66. private String waterProblem;
  67. @ApiModelProperty("是否收取水费,1是,2否")
  68. private String isCalFee;
  69. @ApiModelProperty("水价类型")
  70. private String feeType;
  71. @ApiModelProperty("计量水价信息")
  72. private String isJiliangFeeNote;
  73. @ApiModelProperty("计量水价类型")
  74. private String isJiliangFeeType;
  75. @ApiModelProperty("计量水价")
  76. private String isJiliangFee;
  77. @ApiModelProperty("固定水价信息")
  78. private String isGudingFeeNote;
  79. @ApiModelProperty("固定水价")
  80. private String isGudingFee;
  81. @ApiModelProperty("总体评价-是否解决问题")
  82. private String feeProblem;
  83. @ApiModelProperty("是否供水保证率存在问题,1是,2否")
  84. private String isSplyProblem;
  85. @ApiModelProperty("供水保证率存在问题")
  86. private String splyProblem;
  87. @ApiModelProperty("是否贫困县,1是,2否")
  88. private String isPkx;
  89. @ApiModelProperty("暗访日期")
  90. private Date visitDate;
  91. @ApiModelProperty("记录人员ID")
  92. private String persId;
  93. @ApiModelProperty("记录人员名称")
  94. private String recPers2;
  95. @ApiModelProperty("创建时间")
  96. private Date createTime;
  97. @ApiModelProperty("修改时间")
  98. private Date updateTime;
  99. private String status;
  100. @ApiModelProperty("用水是否方便,达标")
  101. private String isEasyUse;
  102. @ApiModelProperty("用水方便是否存在问题,1是,2否")
  103. private String easyUseProblem;
  104. @ApiModelProperty("是否知晓服务人员电话,1是,2否")
  105. private String isKnowServicer;
  106. @ApiModelProperty("是否进行电话回访")
  107. private String isCallRollback;
  108. @ApiModelProperty("信息备注")
  109. private String visiteNote;
  110. @ApiModelProperty("详细地址")
  111. private String adFullName;
  112. public BisNewWateruserInfo() {
  113. }
  114. public String getIsWaterReach() {
  115. return isWaterReach;
  116. }
  117. public void setIsWaterReach(String isWaterReach) {
  118. this.isWaterReach = isWaterReach;
  119. }
  120. public String getAdFullName() {
  121. return adFullName;
  122. }
  123. public void setAdFullName(String adFullName) {
  124. this.adFullName = adFullName;
  125. }
  126. public String getJiliangPriceTwo() {
  127. return jiliangPriceTwo;
  128. }
  129. public void setJiliangPriceTwo(String jiliangPriceTwo) {
  130. this.jiliangPriceTwo = jiliangPriceTwo;
  131. }
  132. public String getGudingPriceTwo() {
  133. return gudingPriceTwo;
  134. }
  135. public void setGudingPriceTwo(String gudingPriceTwo) {
  136. this.gudingPriceTwo = gudingPriceTwo;
  137. }
  138. public Double getLgtd() {
  139. return lgtd;
  140. }
  141. public void setLgtd(Double lgtd) {
  142. this.lgtd = lgtd;
  143. }
  144. public Double getLttd() {
  145. return lttd;
  146. }
  147. public void setLttd(Double lttd) {
  148. this.lttd = lttd;
  149. }
  150. public Double getLgtdpc() {
  151. return lgtdpc;
  152. }
  153. public void setLgtdpc(Double lgtdpc) {
  154. this.lgtdpc = lgtdpc;
  155. }
  156. public Double getLttdpc() {
  157. return lttdpc;
  158. }
  159. public void setLttdpc(Double lttdpc) {
  160. this.lttdpc = lttdpc;
  161. }
  162. public String getGudingPriceDw() {
  163. return gudingPriceDw;
  164. }
  165. public void setGudingPriceDw(String gudingPriceDw) {
  166. this.gudingPriceDw = gudingPriceDw;
  167. }
  168. public String getGudingPrice() {
  169. return gudingPrice;
  170. }
  171. public void setGudingPrice(String gudingPrice) {
  172. this.gudingPrice = gudingPrice;
  173. }
  174. public String getXianEPrice() {
  175. return xianEPrice;
  176. }
  177. public void setXianEPrice(String xianEPrice) {
  178. this.xianEPrice = xianEPrice;
  179. }
  180. public String getJiliangPrice() {
  181. return jiliangPrice;
  182. }
  183. public void setJiliangPrice(String jiliangPrice) {
  184. this.jiliangPrice = jiliangPrice;
  185. }
  186. public String getJietiPriceOne() {
  187. return jietiPriceOne;
  188. }
  189. public void setJietiPriceOne(String jietiPriceOne) {
  190. this.jietiPriceOne = jietiPriceOne;
  191. }
  192. public String getJietiPriceTwo() {
  193. return jietiPriceTwo;
  194. }
  195. public void setJietiPriceTwo(String jietiPriceTwo) {
  196. this.jietiPriceTwo = jietiPriceTwo;
  197. }
  198. public String getJietiPriceThree() {
  199. return jietiPriceThree;
  200. }
  201. public void setJietiPriceThree(String jietiPriceThree) {
  202. this.jietiPriceThree = jietiPriceThree;
  203. }
  204. public String getJietiXianeOne() {
  205. return jietiXianeOne;
  206. }
  207. public void setJietiXianeOne(String jietiXianeOne) {
  208. this.jietiXianeOne = jietiXianeOne;
  209. }
  210. public String getJietiXianeTwo() {
  211. return jietiXianeTwo;
  212. }
  213. public void setJietiXianeTwo(String jietiXianeTwo) {
  214. this.jietiXianeTwo = jietiXianeTwo;
  215. }
  216. public String getJietiXianeThree() {
  217. return jietiXianeThree;
  218. }
  219. public void setJietiXianeThree(String jietiXianeThree) {
  220. this.jietiXianeThree = jietiXianeThree;
  221. }
  222. public String getRegstrId() {
  223. return regstrId;
  224. }
  225. public void setRegstrId(String regstrId) {
  226. this.regstrId = regstrId;
  227. }
  228. public String getId() {
  229. return id;
  230. }
  231. public void setId(String id) {
  232. this.id = id;
  233. }
  234. public String getAdCode() {
  235. return adCode;
  236. }
  237. public void setAdCode(String adCode) {
  238. this.adCode = adCode;
  239. }
  240. public String getVillageNm() {
  241. return villageNm;
  242. }
  243. public void setVillageNm(String villageNm) {
  244. this.villageNm = villageNm;
  245. }
  246. public String getUserNm() {
  247. return userNm;
  248. }
  249. public void setUserNm(String userNm) {
  250. this.userNm = userNm;
  251. }
  252. public String getTelphone() {
  253. return telphone;
  254. }
  255. public void setTelphone(String telphone) {
  256. this.telphone = telphone;
  257. }
  258. public String getIsQualityGood() {
  259. return isQualityGood;
  260. }
  261. public void setIsQualityGood(String isQualityGood) {
  262. this.isQualityGood = isQualityGood;
  263. }
  264. public String getQualityProblem() {
  265. return qualityProblem;
  266. }
  267. public void setQualityProblem(String qualityProblem) {
  268. this.qualityProblem = qualityProblem;
  269. }
  270. public String getIsSplyHome() {
  271. return isSplyHome;
  272. }
  273. public void setIsSplyHome(String isSplyHome) {
  274. this.isSplyHome = isSplyHome;
  275. }
  276. public String getIs24hSupply() {
  277. return is24hSupply;
  278. }
  279. public void setIs24hSupply(String is24hSupply) {
  280. this.is24hSupply = is24hSupply;
  281. }
  282. public String getWaterProblem() {
  283. return waterProblem;
  284. }
  285. public void setWaterProblem(String waterProblem) {
  286. this.waterProblem = waterProblem;
  287. }
  288. public String getIsCalFee() {
  289. return isCalFee;
  290. }
  291. public void setIsCalFee(String isCalFee) {
  292. this.isCalFee = isCalFee;
  293. }
  294. public String getFeeType() {
  295. return feeType;
  296. }
  297. public void setFeeType(String feeType) {
  298. this.feeType = feeType;
  299. }
  300. public String getIsJiliangFeeNote() {
  301. return isJiliangFeeNote;
  302. }
  303. public void setIsJiliangFeeNote(String isJiliangFeeNote) {
  304. this.isJiliangFeeNote = isJiliangFeeNote;
  305. }
  306. public String getIsJiliangFeeType() {
  307. return isJiliangFeeType;
  308. }
  309. public void setIsJiliangFeeType(String isJiliangFeeType) {
  310. this.isJiliangFeeType = isJiliangFeeType;
  311. }
  312. public String getIsJiliangFee() {
  313. return isJiliangFee;
  314. }
  315. public void setIsJiliangFee(String isJiliangFee) {
  316. this.isJiliangFee = isJiliangFee;
  317. }
  318. public String getIsGudingFeeNote() {
  319. return isGudingFeeNote;
  320. }
  321. public void setIsGudingFeeNote(String isGudingFeeNote) {
  322. this.isGudingFeeNote = isGudingFeeNote;
  323. }
  324. public String getIsGudingFee() {
  325. return isGudingFee;
  326. }
  327. public void setIsGudingFee(String isGudingFee) {
  328. this.isGudingFee = isGudingFee;
  329. }
  330. public String getFeeProblem() {
  331. return feeProblem;
  332. }
  333. public void setFeeProblem(String feeProblem) {
  334. this.feeProblem = feeProblem;
  335. }
  336. public String getIsSplyProblem() {
  337. return isSplyProblem;
  338. }
  339. public void setIsSplyProblem(String isSplyProblem) {
  340. this.isSplyProblem = isSplyProblem;
  341. }
  342. public String getSplyProblem() {
  343. return splyProblem;
  344. }
  345. public void setSplyProblem(String splyProblem) {
  346. this.splyProblem = splyProblem;
  347. }
  348. public String getIsPkx() {
  349. return isPkx;
  350. }
  351. public void setIsPkx(String isPkx) {
  352. this.isPkx = isPkx;
  353. }
  354. public Date getVisitDate() {
  355. return visitDate;
  356. }
  357. public void setVisitDate(Date visitDate) {
  358. this.visitDate = visitDate;
  359. }
  360. public String getPersId() {
  361. return persId;
  362. }
  363. public void setPersId(String persId) {
  364. this.persId = persId;
  365. }
  366. public String getRecPers2() {
  367. return recPers2;
  368. }
  369. public void setRecPers2(String recPers2) {
  370. this.recPers2 = recPers2;
  371. }
  372. public Date getCreateTime() {
  373. return createTime;
  374. }
  375. public void setCreateTime(Date createTime) {
  376. this.createTime = createTime;
  377. }
  378. public Date getUpdateTime() {
  379. return updateTime;
  380. }
  381. public void setUpdateTime(Date updateTime) {
  382. this.updateTime = updateTime;
  383. }
  384. public String getStatus() {
  385. return status;
  386. }
  387. public void setStatus(String status) {
  388. this.status = status;
  389. }
  390. public String getIsEasyUse() {
  391. return isEasyUse;
  392. }
  393. public void setIsEasyUse(String isEasyUse) {
  394. this.isEasyUse = isEasyUse;
  395. }
  396. public String getEasyUseProblem() {
  397. return easyUseProblem;
  398. }
  399. public void setEasyUseProblem(String easyUseProblem) {
  400. this.easyUseProblem = easyUseProblem;
  401. }
  402. public String getIsKnowServicer() {
  403. return isKnowServicer;
  404. }
  405. public void setIsKnowServicer(String isKnowServicer) {
  406. this.isKnowServicer = isKnowServicer;
  407. }
  408. public String getIsCallRollback() {
  409. return isCallRollback;
  410. }
  411. public void setIsCallRollback(String isCallRollback) {
  412. this.isCallRollback = isCallRollback;
  413. }
  414. public String getVisiteNote() {
  415. return visiteNote;
  416. }
  417. public void setVisiteNote(String visiteNote) {
  418. this.visiteNote = visiteNote;
  419. }
  420. @Override
  421. public String toString() {
  422. return "BisNewWateruserInfo [" + "lgtd=" + lgtd + ", lttd=" + lttd + ", lgtdpc=" + lgtdpc + ", lttdpc=" + lttdpc + ", gudingPriceDw=" + gudingPriceDw + ", gudingPrice=" + gudingPrice + ", xianEPrice=" + xianEPrice + ", jiliangPrice=" + jiliangPrice + ", jietiPriceOne=" + jietiPriceOne + ", jietiPriceTwo=" + jietiPriceTwo + ", jietiPriceThree=" + jietiPriceThree + ", jietiXianeOne=" + jietiXianeOne + ", jietiXianeTwo=" + jietiXianeTwo + ", jietiXianeThree=" + jietiXianeThree + ", regstrId=" + regstrId + ", id=" + id + ", adCode=" + adCode + ", villageNm=" + villageNm + ", userNm=" + userNm + ", telphone=" + telphone + ", isQualityGood=" + isQualityGood + ", qualityProblem=" + qualityProblem + ", isSplyHome=" + isSplyHome + ", is24hSupply=" + is24hSupply + ", waterProblem=" + waterProblem + ", isCalFee=" + isCalFee + ", feeType=" + feeType + ", isJiliangFeeNote=" + isJiliangFeeNote + ", isJiliangFeeType=" + isJiliangFeeType + ", isJiliangFee=" + isJiliangFee + ", isGudingFeeNote=" + isGudingFeeNote + ", isGudingFee=" + isGudingFee + ", feeProblem=" + feeProblem + ", isSplyProblem=" + isSplyProblem + ", splyProblem=" + splyProblem + ", isPkx=" + isPkx + ", visitDate=" + visitDate + ", persId=" + persId + ", recPers2=" + recPers2 + ", createTime=" + createTime + ", updateTime=" + updateTime + ", status=" + status + ", isEasyUse=" + isEasyUse + ", easyUseProblem=" + easyUseProblem + ", isKnowServicer=" + isKnowServicer + ", isCallRollback=" + isCallRollback + ", visiteNote=" + visiteNote + "]";
  423. }
  424. }