209d2cfe266ada8015c376f3884b55983b643060.svn-base 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import java.io.Serializable;
  5. import java.util.Date;
  6. /**
  7. * BisNewCountryFeeParam
  8. *
  9. * @author lune
  10. * @date 2020-3-27
  11. */
  12. public class BisNewCountryFeeParam extends PageParam implements Serializable {
  13. @ApiModelProperty("工程是否正常运行")
  14. private String isProNormal;
  15. @ApiModelProperty("高德经度")
  16. private Double lgtd;
  17. @ApiModelProperty("高德纬度")
  18. private Double lttd;
  19. @ApiModelProperty("pc经度")
  20. private Double lgtdpc;
  21. @ApiModelProperty("pc纬度")
  22. private Double lttdpc;
  23. @ApiModelProperty("两步制水价价格,计量水价存放")
  24. private String jiliangPriceTwo;
  25. @ApiModelProperty("两步制水价价格,固定水价存放")
  26. private String gudingPriceTwo;
  27. @ApiModelProperty("1为月元。户/2为月人。户")
  28. private String gudingPriceDw;
  29. @ApiModelProperty("固定水价,以及两步制水价固定水价部分")
  30. private String gudingPrice;
  31. @ApiModelProperty("存放限制额度(两步制水价限额)")
  32. private String xianEPrice;
  33. @ApiModelProperty("单一制水价价格,计量水价存放,水费类型1,4存放")
  34. private String jiliangPrice;
  35. @ApiModelProperty("阶梯水价1")
  36. private String jietiPriceOne;
  37. @ApiModelProperty("阶梯水价2")
  38. private String jietiPriceTwo;
  39. @ApiModelProperty("阶梯水价3")
  40. private String jietiPriceThree;
  41. @ApiModelProperty("阶梯水价,阶梯限额1")
  42. private String jietiXianeOne;
  43. @ApiModelProperty("阶梯水价,阶梯限额2")
  44. private String jietiXianeTwo;
  45. @ApiModelProperty("阶梯水价,阶梯限额3")
  46. private String jietiXianeThree;
  47. @ApiModelProperty("水价类型,1单一水价,2两步制水价,3阶梯水价,4固定水价")
  48. private String feeType;
  49. @ApiModelProperty("计量水价信息")
  50. private String isJiliangFeeNote;
  51. @ApiModelProperty("计量水价类型,feeType类型1-3为1")
  52. private String isJiliangFeeType;
  53. @ApiModelProperty("计量水价")
  54. private String isJiliangFee;
  55. @ApiModelProperty("固定水价信息")
  56. private String isGudingFeeNote;
  57. @ApiModelProperty("固定水价,feeType类型为4,值为1")
  58. private String isGudingFee;
  59. @ApiModelProperty("供水工程id")
  60. private String id;
  61. @ApiModelProperty(value = "人饮督查登记表id",required = true)
  62. private String regstrId;
  63. @ApiModelProperty(value = "行政村编码",required = true)
  64. private String adCode;
  65. @ApiModelProperty(value = "所在地")
  66. private String location;
  67. @ApiModelProperty(value = "人饮工程编码")
  68. private String cwsCode;
  69. @ApiModelProperty("设计供水规模")
  70. private String designWaterSupply;
  71. @ApiModelProperty("建成时间")
  72. private String finishTime;
  73. @ApiModelProperty("覆盖人口")
  74. private String overPeople;
  75. @ApiModelProperty("调查地点,所在地")
  76. private String villageNm;
  77. @ApiModelProperty("是否贫困县")
  78. private String isPkx;
  79. @ApiModelProperty("是否氟超标县,1是,2否")
  80. private String isFoOver;
  81. @ApiModelProperty("工程名称")
  82. private String projectNm;
  83. @ApiModelProperty("工程类型")
  84. private String projectType;
  85. @ApiModelProperty("水费是否定价,1是,2否")
  86. private String isFeeMake;
  87. @ApiModelProperty("水费定价依据,1政府文件定价,2自主定价,3物价部门核定")
  88. private String feeRely;
  89. @ApiModelProperty("计量水价信息")
  90. private String isJiliangNote;
  91. @ApiModelProperty("计量水价类型")
  92. private String isJiliangType;
  93. @ApiModelProperty("固定水价信息")
  94. private String isGudingNote;
  95. @ApiModelProperty("固定水价类型")
  96. private String isGudingType;
  97. @ApiModelProperty("是否收取水费")
  98. private String isCalFee;
  99. @ApiModelProperty("水费加补助是否覆盖成本")
  100. private String isOverBaseFee;
  101. @ApiModelProperty("水费缴费率")
  102. private String payFeeProcent;
  103. @ApiModelProperty("净化设备是否配备")
  104. private String isOwnCleanTool;
  105. @ApiModelProperty("净化设备是否运行政策")
  106. private String cleanToolNormal;
  107. @ApiModelProperty("暗访日期")
  108. private String visitDate;
  109. @ApiModelProperty("记录人员ID")
  110. private String persId;
  111. @ApiModelProperty("暗访人名称")
  112. private String recPers2;
  113. @ApiModelProperty("创建时间")
  114. private Date createTime;
  115. @ApiModelProperty("修改时间")
  116. private Date updateTime;
  117. private String status;
  118. @ApiModelProperty("消毒设备是否配置")
  119. private String isOwnDisinfTool;
  120. @ApiModelProperty("消毒设备是否政策")
  121. private String isOwnDisinfNormal;
  122. @ApiModelProperty("水质检测有无报告")
  123. private String waterQuaHaveNote;
  124. @ApiModelProperty("水质检测是否合格")
  125. private String waterQuaIsHege;
  126. @ApiModelProperty("水质检测不合格备注")
  127. private String waterQuaNohgNote;
  128. @ApiModelProperty("服务电话")
  129. private String telephone;
  130. @ApiModelProperty("详细地址")
  131. private String adFullName;
  132. public BisNewCountryFeeParam() {
  133. }
  134. public String getIsProNormal() {
  135. return isProNormal;
  136. }
  137. public void setIsProNormal(String isProNormal) {
  138. this.isProNormal = isProNormal;
  139. }
  140. public String getAdFullName() {
  141. return adFullName;
  142. }
  143. public void setAdFullName(String adFullName) {
  144. this.adFullName = adFullName;
  145. }
  146. public String getGudingPriceTwo() {
  147. return gudingPriceTwo;
  148. }
  149. public void setGudingPriceTwo(String gudingPriceTwo) {
  150. this.gudingPriceTwo = gudingPriceTwo;
  151. }
  152. public String getJiliangPriceTwo() {
  153. return jiliangPriceTwo;
  154. }
  155. public void setJiliangPriceTwo(String jiliangPriceTwo) {
  156. this.jiliangPriceTwo = jiliangPriceTwo;
  157. }
  158. public Double getLgtd() {
  159. return lgtd;
  160. }
  161. public void setLgtd(Double lgtd) {
  162. this.lgtd = lgtd;
  163. }
  164. public Double getLttd() {
  165. return lttd;
  166. }
  167. public void setLttd(Double lttd) {
  168. this.lttd = lttd;
  169. }
  170. public Double getLgtdpc() {
  171. return lgtdpc;
  172. }
  173. public void setLgtdpc(Double lgtdpc) {
  174. this.lgtdpc = lgtdpc;
  175. }
  176. public Double getLttdpc() {
  177. return lttdpc;
  178. }
  179. public void setLttdpc(Double lttdpc) {
  180. this.lttdpc = lttdpc;
  181. }
  182. public String getGudingPriceDw() {
  183. return gudingPriceDw;
  184. }
  185. public void setGudingPriceDw(String gudingPriceDw) {
  186. this.gudingPriceDw = gudingPriceDw;
  187. }
  188. public String getGudingPrice() {
  189. return gudingPrice;
  190. }
  191. public void setGudingPrice(String gudingPrice) {
  192. this.gudingPrice = gudingPrice;
  193. }
  194. public String getXianEPrice() {
  195. return xianEPrice;
  196. }
  197. public void setXianEPrice(String xianEPrice) {
  198. this.xianEPrice = xianEPrice;
  199. }
  200. public String getJiliangPrice() {
  201. return jiliangPrice;
  202. }
  203. public void setJiliangPrice(String jiliangPrice) {
  204. this.jiliangPrice = jiliangPrice;
  205. }
  206. public String getJietiPriceOne() {
  207. return jietiPriceOne;
  208. }
  209. public void setJietiPriceOne(String jietiPriceOne) {
  210. this.jietiPriceOne = jietiPriceOne;
  211. }
  212. public String getJietiPriceTwo() {
  213. return jietiPriceTwo;
  214. }
  215. public void setJietiPriceTwo(String jietiPriceTwo) {
  216. this.jietiPriceTwo = jietiPriceTwo;
  217. }
  218. public String getJietiPriceThree() {
  219. return jietiPriceThree;
  220. }
  221. public void setJietiPriceThree(String jietiPriceThree) {
  222. this.jietiPriceThree = jietiPriceThree;
  223. }
  224. public String getJietiXianeOne() {
  225. return jietiXianeOne;
  226. }
  227. public void setJietiXianeOne(String jietiXianeOne) {
  228. this.jietiXianeOne = jietiXianeOne;
  229. }
  230. public String getJietiXianeTwo() {
  231. return jietiXianeTwo;
  232. }
  233. public void setJietiXianeTwo(String jietiXianeTwo) {
  234. this.jietiXianeTwo = jietiXianeTwo;
  235. }
  236. public String getJietiXianeThree() {
  237. return jietiXianeThree;
  238. }
  239. public void setJietiXianeThree(String jietiXianeThree) {
  240. this.jietiXianeThree = jietiXianeThree;
  241. }
  242. public String getIsJiliangFeeNote() {
  243. return isJiliangFeeNote;
  244. }
  245. public void setIsJiliangFeeNote(String isJiliangFeeNote) {
  246. this.isJiliangFeeNote = isJiliangFeeNote;
  247. }
  248. public String getIsJiliangFeeType() {
  249. return isJiliangFeeType;
  250. }
  251. public void setIsJiliangFeeType(String isJiliangFeeType) {
  252. this.isJiliangFeeType = isJiliangFeeType;
  253. }
  254. public String getIsGudingFeeNote() {
  255. return isGudingFeeNote;
  256. }
  257. public void setIsGudingFeeNote(String isGudingFeeNote) {
  258. this.isGudingFeeNote = isGudingFeeNote;
  259. }
  260. public String getLocation() {
  261. return location;
  262. }
  263. public void setLocation(String location) {
  264. this.location = location;
  265. }
  266. public String getCwsCode() {
  267. return cwsCode;
  268. }
  269. public void setCwsCode(String cwsCode) {
  270. this.cwsCode = cwsCode;
  271. }
  272. public String getId() {
  273. return id;
  274. }
  275. public void setId(String id) {
  276. this.id = id;
  277. }
  278. public String getRegstrId() {
  279. return regstrId;
  280. }
  281. public void setRegstrId(String regstrId) {
  282. this.regstrId = regstrId;
  283. }
  284. public String getAdCode() {
  285. return adCode;
  286. }
  287. public void setAdCode(String adCode) {
  288. this.adCode = adCode;
  289. }
  290. public String getDesignWaterSupply() {
  291. return designWaterSupply;
  292. }
  293. public void setDesignWaterSupply(String designWaterSupply) {
  294. this.designWaterSupply = designWaterSupply;
  295. }
  296. public String getFinishTime() {
  297. return finishTime;
  298. }
  299. public void setFinishTime(String finishTime) {
  300. this.finishTime = finishTime;
  301. }
  302. public String getOverPeople() {
  303. return overPeople;
  304. }
  305. public void setOverPeople(String overPeople) {
  306. this.overPeople = overPeople;
  307. }
  308. public String getVillageNm() {
  309. return villageNm;
  310. }
  311. public void setVillageNm(String villageNm) {
  312. this.villageNm = villageNm;
  313. }
  314. public String getIsPkx() {
  315. return isPkx;
  316. }
  317. public void setIsPkx(String isPkx) {
  318. this.isPkx = isPkx;
  319. }
  320. public String getIsFoOver() {
  321. return isFoOver;
  322. }
  323. public void setIsFoOver(String isFoOver) {
  324. this.isFoOver = isFoOver;
  325. }
  326. public String getProjectNm() {
  327. return projectNm;
  328. }
  329. public void setProjectNm(String projectNm) {
  330. this.projectNm = projectNm;
  331. }
  332. public String getProjectType() {
  333. return projectType;
  334. }
  335. public void setProjectType(String projectType) {
  336. this.projectType = projectType;
  337. }
  338. public String getIsFeeMake() {
  339. return isFeeMake;
  340. }
  341. public void setIsFeeMake(String isFeeMake) {
  342. this.isFeeMake = isFeeMake;
  343. }
  344. public String getFeeRely() {
  345. return feeRely;
  346. }
  347. public void setFeeRely(String feeRely) {
  348. this.feeRely = feeRely;
  349. }
  350. public String getIsJiliangNote() {
  351. return isJiliangNote;
  352. }
  353. public void setIsJiliangNote(String isJiliangNote) {
  354. this.isJiliangNote = isJiliangNote;
  355. }
  356. public String getIsJiliangType() {
  357. return isJiliangType;
  358. }
  359. public void setIsJiliangType(String isJiliangType) {
  360. this.isJiliangType = isJiliangType;
  361. }
  362. public String getIsJiliangFee() {
  363. return isJiliangFee;
  364. }
  365. public void setIsJiliangFee(String isJiliangFee) {
  366. this.isJiliangFee = isJiliangFee;
  367. }
  368. public String getIsGudingNote() {
  369. return isGudingNote;
  370. }
  371. public void setIsGudingNote(String isGudingNote) {
  372. this.isGudingNote = isGudingNote;
  373. }
  374. public String getIsGudingType() {
  375. return isGudingType;
  376. }
  377. public void setIsGudingType(String isGudingType) {
  378. this.isGudingType = isGudingType;
  379. }
  380. public String getIsGudingFee() {
  381. return isGudingFee;
  382. }
  383. public void setIsGudingFee(String isGudingFee) {
  384. this.isGudingFee = isGudingFee;
  385. }
  386. public String getFeeType() {
  387. return feeType;
  388. }
  389. public void setFeeType(String feeType) {
  390. this.feeType = feeType;
  391. }
  392. public String getIsCalFee() {
  393. return isCalFee;
  394. }
  395. public void setIsCalFee(String isCalFee) {
  396. this.isCalFee = isCalFee;
  397. }
  398. public String getIsOverBaseFee() {
  399. return isOverBaseFee;
  400. }
  401. public void setIsOverBaseFee(String isOverBaseFee) {
  402. this.isOverBaseFee = isOverBaseFee;
  403. }
  404. public String getPayFeeProcent() {
  405. return payFeeProcent;
  406. }
  407. public void setPayFeeProcent(String payFeeProcent) {
  408. this.payFeeProcent = payFeeProcent;
  409. }
  410. public String getIsOwnCleanTool() {
  411. return isOwnCleanTool;
  412. }
  413. public void setIsOwnCleanTool(String isOwnCleanTool) {
  414. this.isOwnCleanTool = isOwnCleanTool;
  415. }
  416. public String getCleanToolNormal() {
  417. return cleanToolNormal;
  418. }
  419. public void setCleanToolNormal(String cleanToolNormal) {
  420. this.cleanToolNormal = cleanToolNormal;
  421. }
  422. public String getVisitDate() {
  423. return visitDate;
  424. }
  425. public void setVisitDate(String visitDate) {
  426. this.visitDate = visitDate;
  427. }
  428. public String getPersId() {
  429. return persId;
  430. }
  431. public void setPersId(String persId) {
  432. this.persId = persId;
  433. }
  434. public String getRecPers2() {
  435. return recPers2;
  436. }
  437. public void setRecPers2(String recPers2) {
  438. this.recPers2 = recPers2;
  439. }
  440. public Date getCreateTime() {
  441. return createTime;
  442. }
  443. public void setCreateTime(Date createTime) {
  444. this.createTime = createTime;
  445. }
  446. public Date getUpdateTime() {
  447. return updateTime;
  448. }
  449. public void setUpdateTime(Date updateTime) {
  450. this.updateTime = updateTime;
  451. }
  452. public String getStatus() {
  453. return status;
  454. }
  455. public void setStatus(String status) {
  456. this.status = status;
  457. }
  458. public String getIsOwnDisinfTool() {
  459. return isOwnDisinfTool;
  460. }
  461. public void setIsOwnDisinfTool(String isOwnDisinfTool) {
  462. this.isOwnDisinfTool = isOwnDisinfTool;
  463. }
  464. public String getIsOwnDisinfNormal() {
  465. return isOwnDisinfNormal;
  466. }
  467. public void setIsOwnDisinfNormal(String isOwnDisinfNormal) {
  468. this.isOwnDisinfNormal = isOwnDisinfNormal;
  469. }
  470. public String getWaterQuaHaveNote() {
  471. return waterQuaHaveNote;
  472. }
  473. public void setWaterQuaHaveNote(String waterQuaHaveNote) {
  474. this.waterQuaHaveNote = waterQuaHaveNote;
  475. }
  476. public String getWaterQuaIsHege() {
  477. return waterQuaIsHege;
  478. }
  479. public void setWaterQuaIsHege(String waterQuaIsHege) {
  480. this.waterQuaIsHege = waterQuaIsHege;
  481. }
  482. public String getWaterQuaNohgNote() {
  483. return waterQuaNohgNote;
  484. }
  485. public void setWaterQuaNohgNote(String waterQuaNohgNote) {
  486. this.waterQuaNohgNote = waterQuaNohgNote;
  487. }
  488. public String getTelephone() {
  489. return telephone;
  490. }
  491. public void setTelephone(String telephone) {
  492. this.telephone = telephone;
  493. }
  494. }