1dbe79411fa0aaeed069c0faf9da22838906f7ac.svn-base 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725
  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:BisInspVill2021Cws
  9. *
  10. * @author lhc
  11. * @date 2021-6-16
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class BisInspVill2021Cws extends BaseBean implements Serializable {
  15. /**
  16. * 主键ID
  17. */
  18. @ApiModelProperty(value = "主键ID", name = "id")
  19. private String id;
  20. @ApiModelProperty(value = "行政划区ID", name = "adCode")
  21. private String adCode;
  22. @ApiModelProperty(value = "行政划区", name = "adName")
  23. private String adName;
  24. /**
  25. * 登记表ID
  26. */
  27. @ApiModelProperty(value = "登记表ID", name = "rgstrId")
  28. private String rgstrId;
  29. /**
  30. * 所在地
  31. */
  32. @ApiModelProperty(value = "所在地", name = "cwsLoc")
  33. private String cwsLoc;
  34. /**
  35. * 所在村组
  36. */
  37. @ApiModelProperty(value = "所在村组", name = "cwsVill")
  38. private String cwsVill;
  39. /**
  40. * PC经度
  41. */
  42. @ApiModelProperty(value = "PC经度", name = "centerX")
  43. private Double centerX;
  44. /**
  45. * PC纬度
  46. */
  47. @ApiModelProperty(value = "PC纬度", name = "centerY")
  48. private Double centerY;
  49. /**
  50. * 高德经度
  51. */
  52. @ApiModelProperty(value = "高德经度", name = "gdX")
  53. private Double gdX;
  54. /**
  55. * 高德纬度
  56. */
  57. @ApiModelProperty(value = "高德纬度", name = "gdY")
  58. private Double gdY;
  59. /**
  60. * 是否国家级脱贫县
  61. */
  62. @ApiModelProperty(value = "是否国家级脱贫县", name = "isOvpvCounty")
  63. private String isOvpvCounty;
  64. /**
  65. * 是否氟超标县
  66. */
  67. @ApiModelProperty(value = "是否氟超标县", name = "isOvyfCounty")
  68. private String isOvyfCounty;
  69. /**
  70. * 是否苦咸水超标县
  71. */
  72. @ApiModelProperty(value = "是否苦咸水超标县", name = "isOvslyCounty")
  73. private String isOvslyCounty;
  74. /**
  75. * 工程类型 1千吨万人供水工程 2千人供水工程 3千人以下集中供水工程
  76. */
  77. @ApiModelProperty(value = "工程类型 1千吨万人供水工程 2千人供水工程 3千人以下集中供水工程", name = "villType")
  78. private String villType;
  79. /**
  80. * 是否氟改水工程
  81. */
  82. @ApiModelProperty(value = "是否氟改水工程", name = "isOvyfCws")
  83. private String isOvyfCws;
  84. /**
  85. * 是否苦咸水改水工程
  86. */
  87. @ApiModelProperty(value = "是否苦咸水改水工程", name = "isOvslyCws")
  88. private String isOvslyCws;
  89. /**
  90. * 是否正常运行
  91. */
  92. @ApiModelProperty(value = "是否正常运行", name = "isRunCws")
  93. private String isRunCws;
  94. /**
  95. * 不能正常运行原因
  96. */
  97. @ApiModelProperty(value = "不能正常运行原因", name = "nrunNote")
  98. private String nrunNote;
  99. /**
  100. * 是否定价
  101. */
  102. @ApiModelProperty(value = "是否定价", name = "isFix")
  103. private String isFix;
  104. /**
  105. * 水价类型 1单一制水价 2两部制水价 3阶梯水价 4 固定水价
  106. */
  107. @ApiModelProperty(value = "水价类型 1单一制水价 2两部制水价 3阶梯水价 4 固定水价", name = "wtType")
  108. private String wtType;
  109. /**
  110. * 单一制水价 元
  111. */
  112. @ApiModelProperty(value = "单一制水价 元", name = "singCost")
  113. private Double singCost;
  114. /**
  115. * 两部制水价固定水价
  116. */
  117. @ApiModelProperty(value = "两部制水价固定水价", name = "twoCost")
  118. private Double twoCost;
  119. /** 计量水价 元 */
  120. @ApiModelProperty(value="计量水价 元",name="meaCost")
  121. private Double meaCost;
  122. /**
  123. * 两部制水价限额计量水价
  124. */
  125. @ApiModelProperty(value = "两部制水价限额计量水价", name = "twoCostLimt")
  126. private Double twoCostLimt;
  127. /**
  128. * 阶梯水价 第一阶梯 固定 元
  129. */
  130. @ApiModelProperty(value = "阶梯水价 第一阶梯 固定 元", name = "step1Cost")
  131. private Double step1Cost;
  132. /**
  133. * 阶梯水价 第一阶梯 限额
  134. */
  135. @ApiModelProperty(value = "阶梯水价 第一阶梯 限额", name = "step1CostLimt")
  136. private Double step1CostLimt;
  137. /**
  138. * 阶梯水价 第二阶梯 固定 元
  139. */
  140. @ApiModelProperty(value = "阶梯水价 第二阶梯 固定 元", name = "step2Cost")
  141. private Double step2Cost;
  142. /**
  143. * 阶梯水价 第二阶梯 限额
  144. */
  145. @ApiModelProperty(value = "阶梯水价 第二阶梯 限额", name = "step2CostLimt")
  146. private Double step2CostLimt;
  147. /**
  148. * 阶梯水价 第三阶梯 固定 元
  149. */
  150. @ApiModelProperty(value = "阶梯水价 第三阶梯 固定 元", name = "step3Cost")
  151. private Double step3Cost;
  152. /**
  153. * 阶梯水价 第三阶梯 限额
  154. */
  155. @ApiModelProperty(value = "阶梯水价 第三阶梯 限额", name = "step3CostLimt")
  156. private Double step3CostLimt;
  157. /**
  158. * 固定水价 元
  159. */
  160. @ApiModelProperty(value = "固定水价 元", name = "fixCost")
  161. private Double fixCost;
  162. /**
  163. * 固定水价单位 月/人月
  164. */
  165. @ApiModelProperty(value = "固定水价单位 月/人月", name = "fixCostUnit")
  166. private String fixCostUnit;
  167. /**
  168. * 是否收取水费
  169. */
  170. @ApiModelProperty(value = "是否收取水费", name = "isCost")
  171. private String isCost;
  172. /**
  173. * 水费加补助是否覆盖运行成本
  174. */
  175. @ApiModelProperty(value = "水费加补助是否覆盖运行成本", name = "isCostSub")
  176. private String isCostSub;
  177. /**
  178. * 是否配备净化设备
  179. */
  180. @ApiModelProperty(value = "是否配备净化设备", name = "isCleanEq")
  181. private String isCleanEq;
  182. /**
  183. * 配备净化设备是否正常运行
  184. */
  185. @ApiModelProperty(value = "配备净化设备是否正常运行", name = "isCleanRun")
  186. private String isCleanRun;
  187. /**
  188. * 是否配备消毒设备
  189. */
  190. @ApiModelProperty(value = "是否配备消毒设备", name = "isWipeEq")
  191. private String isWipeEq;
  192. /**
  193. * 配备消毒设备是否运行正常
  194. */
  195. @ApiModelProperty(value = "配备消毒设备是否运行正常", name = "isWipeRun")
  196. private String isWipeRun;
  197. /**
  198. * 是否有水质检测报告
  199. */
  200. @ApiModelProperty(value = "是否有水质检测报告", name = "isChkRpt")
  201. private String isChkRpt;
  202. /**
  203. * 水质检测报告是否合格
  204. */
  205. @ApiModelProperty(value = "水质检测报告是否合格", name = "isChkRptPass")
  206. private String isChkRptPass;
  207. /**
  208. * 水质检测报告不合格指标
  209. */
  210. @ApiModelProperty(value = "水质检测报告不合格指标", name = "chkRptPassNote")
  211. private String chkRptPassNote;
  212. /**
  213. * 供水单位性质 1水利部门 2企业,包括水利部门下属企业和承包工程的企业 3乡镇 4村委会 5其他
  214. */
  215. @ApiModelProperty(value = "供水单位性质 1水利部门 2企业,包括水利部门下属企业和承包工程的企业 3乡镇 4村委会 5其他", name = "unitType")
  216. private String unitType;
  217. /**
  218. * 是否设置管水员
  219. */
  220. @ApiModelProperty(value = "是否设置管水员", name = "isSetAdmin")
  221. private String isSetAdmin;
  222. /**
  223. * 是否有水源地
  224. */
  225. @ApiModelProperty(value = "是否有水源地", name = "isWatrSour")
  226. private String isWatrSour;
  227. /**
  228. * 水源类型 1地表水 2地下水 3混合
  229. */
  230. @ApiModelProperty(value = "水源类型 1地表水 2地下水 3混合", name = "swhsType")
  231. private String swhsType;
  232. /**
  233. * 水源水量是否充足
  234. */
  235. @ApiModelProperty(value = "水源水量是否充足", name = "isMeet")
  236. private String isMeet;
  237. /**
  238. * 水源水质评价 1 Ⅰ至Ⅲ类 2Ⅳ及以下
  239. */
  240. @ApiModelProperty(value = "水源水质评价 1 Ⅰ至Ⅲ类 2Ⅳ及以下", name = "evltType")
  241. private String evltType;
  242. /**
  243. * 是否划定水源保护区或保护范围
  244. */
  245. @ApiModelProperty(value = "是否划定水源保护区或保护范围", name = "isRange")
  246. private String isRange;
  247. /**
  248. * 备注
  249. */
  250. @ApiModelProperty(value = "备注", name = "note")
  251. private String note;
  252. /**
  253. * 记录人员ID
  254. */
  255. @ApiModelProperty(value = "记录人员ID", name = "persId")
  256. private String persId;
  257. /**
  258. * 创建时间
  259. */
  260. @ApiModelProperty(value = "创建时间", name = "intm")
  261. private Date intm;
  262. /**
  263. * 最后修改时间
  264. */
  265. @ApiModelProperty(value = "最后修改时间", name = "uptm")
  266. private Date uptm;
  267. /**
  268. * 数据状态(0:正常;9:删除)
  269. */
  270. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  271. private String dataStat;
  272. @ApiModelProperty(value = "工程ID", name = "cwsCode")
  273. private String cwsCode;
  274. @ApiModelProperty(value = "工程名称", name = "cwsNm")
  275. private String cwsNm;
  276. public Double getMeaCost() {
  277. return meaCost;
  278. }
  279. public void setMeaCost(Double meaCost) {
  280. this.meaCost = meaCost;
  281. }
  282. public String getAdCode() {
  283. return adCode;
  284. }
  285. public void setAdCode(String adCode) {
  286. this.adCode = adCode;
  287. }
  288. public String getAdName() {
  289. return adName;
  290. }
  291. public void setAdName(String adName) {
  292. this.adName = adName;
  293. }
  294. public String getCwsCode() {
  295. return cwsCode;
  296. }
  297. public void setCwsCode(String cwsCode) {
  298. this.cwsCode = cwsCode;
  299. }
  300. public String getCwsNm() {
  301. return cwsNm;
  302. }
  303. public void setCwsNm(String cwsNm) {
  304. this.cwsNm = cwsNm;
  305. }
  306. public String getId() {
  307. return id;
  308. }
  309. public void setId(String id) {
  310. this.id = id;
  311. }
  312. public String getRgstrId() {
  313. return rgstrId;
  314. }
  315. public void setRgstrId(String rgstrId) {
  316. this.rgstrId = rgstrId;
  317. }
  318. public String getCwsLoc() {
  319. return cwsLoc;
  320. }
  321. public void setCwsLoc(String cwsLoc) {
  322. this.cwsLoc = cwsLoc;
  323. }
  324. public String getCwsVill() {
  325. return cwsVill;
  326. }
  327. public void setCwsVill(String cwsVill) {
  328. this.cwsVill = cwsVill;
  329. }
  330. public Double getCenterX() {
  331. return centerX;
  332. }
  333. public void setCenterX(Double centerX) {
  334. this.centerX = centerX;
  335. }
  336. public Double getCenterY() {
  337. return centerY;
  338. }
  339. public void setCenterY(Double centerY) {
  340. this.centerY = centerY;
  341. }
  342. public Double getGdX() {
  343. return gdX;
  344. }
  345. public void setGdX(Double gdX) {
  346. this.gdX = gdX;
  347. }
  348. public Double getGdY() {
  349. return gdY;
  350. }
  351. public void setGdY(Double gdY) {
  352. this.gdY = gdY;
  353. }
  354. public String getIsOvpvCounty() {
  355. return isOvpvCounty;
  356. }
  357. public void setIsOvpvCounty(String isOvpvCounty) {
  358. this.isOvpvCounty = isOvpvCounty;
  359. }
  360. public String getIsOvyfCounty() {
  361. return isOvyfCounty;
  362. }
  363. public void setIsOvyfCounty(String isOvyfCounty) {
  364. this.isOvyfCounty = isOvyfCounty;
  365. }
  366. public String getIsOvslyCounty() {
  367. return isOvslyCounty;
  368. }
  369. public void setIsOvslyCounty(String isOvslyCounty) {
  370. this.isOvslyCounty = isOvslyCounty;
  371. }
  372. public String getVillType() {
  373. return villType;
  374. }
  375. public void setVillType(String villType) {
  376. this.villType = villType;
  377. }
  378. public String getIsOvyfCws() {
  379. return isOvyfCws;
  380. }
  381. public void setIsOvyfCws(String isOvyfCws) {
  382. this.isOvyfCws = isOvyfCws;
  383. }
  384. public String getIsOvslyCws() {
  385. return isOvslyCws;
  386. }
  387. public void setIsOvslyCws(String isOvslyCws) {
  388. this.isOvslyCws = isOvslyCws;
  389. }
  390. public String getIsRunCws() {
  391. return isRunCws;
  392. }
  393. public void setIsRunCws(String isRunCws) {
  394. this.isRunCws = isRunCws;
  395. }
  396. public String getNrunNote() {
  397. return nrunNote;
  398. }
  399. public void setNrunNote(String nrunNote) {
  400. this.nrunNote = nrunNote;
  401. }
  402. public String getIsFix() {
  403. return isFix;
  404. }
  405. public void setIsFix(String isFix) {
  406. this.isFix = isFix;
  407. }
  408. public String getWtType() {
  409. return wtType;
  410. }
  411. public void setWtType(String wtType) {
  412. this.wtType = wtType;
  413. }
  414. public Double getSingCost() {
  415. return singCost;
  416. }
  417. public void setSingCost(Double singCost) {
  418. this.singCost = singCost;
  419. }
  420. public Double getTwoCost() {
  421. return twoCost;
  422. }
  423. public void setTwoCost(Double twoCost) {
  424. this.twoCost = twoCost;
  425. }
  426. public Double getTwoCostLimt() {
  427. return twoCostLimt;
  428. }
  429. public void setTwoCostLimt(Double twoCostLimt) {
  430. this.twoCostLimt = twoCostLimt;
  431. }
  432. public Double getStep1Cost() {
  433. return step1Cost;
  434. }
  435. public void setStep1Cost(Double step1Cost) {
  436. this.step1Cost = step1Cost;
  437. }
  438. public Double getStep1CostLimt() {
  439. return step1CostLimt;
  440. }
  441. public void setStep1CostLimt(Double step1CostLimt) {
  442. this.step1CostLimt = step1CostLimt;
  443. }
  444. public Double getStep2Cost() {
  445. return step2Cost;
  446. }
  447. public void setStep2Cost(Double step2Cost) {
  448. this.step2Cost = step2Cost;
  449. }
  450. public Double getStep2CostLimt() {
  451. return step2CostLimt;
  452. }
  453. public void setStep2CostLimt(Double step2CostLimt) {
  454. this.step2CostLimt = step2CostLimt;
  455. }
  456. public Double getStep3Cost() {
  457. return step3Cost;
  458. }
  459. public void setStep3Cost(Double step3Cost) {
  460. this.step3Cost = step3Cost;
  461. }
  462. public Double getStep3CostLimt() {
  463. return step3CostLimt;
  464. }
  465. public void setStep3CostLimt(Double step3CostLimt) {
  466. this.step3CostLimt = step3CostLimt;
  467. }
  468. public Double getFixCost() {
  469. return fixCost;
  470. }
  471. public void setFixCost(Double fixCost) {
  472. this.fixCost = fixCost;
  473. }
  474. public String getFixCostUnit() {
  475. return fixCostUnit;
  476. }
  477. public void setFixCostUnit(String fixCostUnit) {
  478. this.fixCostUnit = fixCostUnit;
  479. }
  480. public String getIsCost() {
  481. return isCost;
  482. }
  483. public void setIsCost(String isCost) {
  484. this.isCost = isCost;
  485. }
  486. public String getIsCostSub() {
  487. return isCostSub;
  488. }
  489. public void setIsCostSub(String isCostSub) {
  490. this.isCostSub = isCostSub;
  491. }
  492. public String getIsCleanEq() {
  493. return isCleanEq;
  494. }
  495. public void setIsCleanEq(String isCleanEq) {
  496. this.isCleanEq = isCleanEq;
  497. }
  498. public String getIsCleanRun() {
  499. return isCleanRun;
  500. }
  501. public void setIsCleanRun(String isCleanRun) {
  502. this.isCleanRun = isCleanRun;
  503. }
  504. public String getIsWipeEq() {
  505. return isWipeEq;
  506. }
  507. public void setIsWipeEq(String isWipeEq) {
  508. this.isWipeEq = isWipeEq;
  509. }
  510. public String getIsWipeRun() {
  511. return isWipeRun;
  512. }
  513. public void setIsWipeRun(String isWipeRun) {
  514. this.isWipeRun = isWipeRun;
  515. }
  516. public String getIsChkRpt() {
  517. return isChkRpt;
  518. }
  519. public void setIsChkRpt(String isChkRpt) {
  520. this.isChkRpt = isChkRpt;
  521. }
  522. public String getIsChkRptPass() {
  523. return isChkRptPass;
  524. }
  525. public void setIsChkRptPass(String isChkRptPass) {
  526. this.isChkRptPass = isChkRptPass;
  527. }
  528. public String getChkRptPassNote() {
  529. return chkRptPassNote;
  530. }
  531. public void setChkRptPassNote(String chkRptPassNote) {
  532. this.chkRptPassNote = chkRptPassNote;
  533. }
  534. public String getUnitType() {
  535. return unitType;
  536. }
  537. public void setUnitType(String unitType) {
  538. this.unitType = unitType;
  539. }
  540. public String getIsSetAdmin() {
  541. return isSetAdmin;
  542. }
  543. public void setIsSetAdmin(String isSetAdmin) {
  544. this.isSetAdmin = isSetAdmin;
  545. }
  546. public String getIsWatrSour() {
  547. return isWatrSour;
  548. }
  549. public void setIsWatrSour(String isWatrSour) {
  550. this.isWatrSour = isWatrSour;
  551. }
  552. public String getSwhsType() {
  553. return swhsType;
  554. }
  555. public void setSwhsType(String swhsType) {
  556. this.swhsType = swhsType;
  557. }
  558. public String getIsMeet() {
  559. return isMeet;
  560. }
  561. public void setIsMeet(String isMeet) {
  562. this.isMeet = isMeet;
  563. }
  564. public String getEvltType() {
  565. return evltType;
  566. }
  567. public void setEvltType(String evltType) {
  568. this.evltType = evltType;
  569. }
  570. public String getIsRange() {
  571. return isRange;
  572. }
  573. public void setIsRange(String isRange) {
  574. this.isRange = isRange;
  575. }
  576. public String getNote() {
  577. return note;
  578. }
  579. public void setNote(String note) {
  580. this.note = note;
  581. }
  582. public String getPersId() {
  583. return persId;
  584. }
  585. public void setPersId(String persId) {
  586. this.persId = persId;
  587. }
  588. public Date getIntm() {
  589. return intm;
  590. }
  591. public void setIntm(Date intm) {
  592. this.intm = intm;
  593. }
  594. public Date getUptm() {
  595. return uptm;
  596. }
  597. public void setUptm(Date uptm) {
  598. this.uptm = uptm;
  599. }
  600. public String getDataStat() {
  601. return dataStat;
  602. }
  603. public void setDataStat(String dataStat) {
  604. this.dataStat = dataStat;
  605. }
  606. @Override
  607. public String toString() {
  608. return "BisInspVill2021Cws [" + "id=" + id + ", rgstrId=" + rgstrId + ", cwsLoc=" + cwsLoc + ", cwsVill=" + cwsVill + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", isOvpvCounty=" + isOvpvCounty + ", isOvyfCounty=" + isOvyfCounty + ", isOvslyCounty=" + isOvslyCounty + ", villType=" + villType + ", isOvyfCws=" + isOvyfCws + ", isOvslyCws=" + isOvslyCws + ", isRunCws=" + isRunCws + ", nrunNote=" + nrunNote + ", isFix=" + isFix + ", wtType=" + wtType + ", singCost=" + singCost + ", twoCost=" + twoCost + ", twoCostLimt=" + twoCostLimt + ", step1Cost=" + step1Cost + ", step1CostLimt=" + step1CostLimt + ", step2Cost=" + step2Cost + ", step2CostLimt=" + step2CostLimt + ", step3Cost=" + step3Cost + ", step3CostLimt=" + step3CostLimt + ", fixCost=" + fixCost + ", fixCostUnit=" + fixCostUnit + ", isCost=" + isCost + ", isCostSub=" + isCostSub + ", isCleanEq=" + isCleanEq + ", isCleanRun=" + isCleanRun + ", isWipeEq=" + isWipeEq + ", isWipeRun=" + isWipeRun + ", isChkRpt=" + isChkRpt + ", isChkRptPass=" + isChkRptPass + ", chkRptPassNote=" + chkRptPassNote + ", unitType=" + unitType + ", isSetAdmin=" + isSetAdmin + ", isWatrSour=" + isWatrSour + ", swhsType=" + swhsType + ", isMeet=" + isMeet + ", evltType=" + evltType + ", isRange=" + isRange + ", note=" + note + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
  609. }
  610. }