01914e12cd36d2b2b0b99dad4ac0dedf34b0121a.svn-base 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  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:BisInspVillgdVill
  9. *
  10. * @author lhc
  11. * @date 2021-4-23
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class BisInspVillgdVill extends BaseBean implements Serializable {
  15. // 主键ID
  16. @ApiModelProperty(value = "主键ID", name = "id")
  17. private String id;
  18. // 登记表ID
  19. @ApiModelProperty(value = "登记表ID", name = "rgstrId")
  20. private String rgstrId;
  21. // 村名
  22. @ApiModelProperty(value = "村名", name = "nm")
  23. private String nm;
  24. // 位置
  25. @ApiModelProperty(value = "位置", name = "loc")
  26. private String loc;
  27. // 是否省定贫困村 1是 2 不是
  28. @ApiModelProperty(value = "是否省定贫困村 1是 2 不是", name = "isPov")
  29. private String isPov;
  30. // 是否少数民族村 1是 2 不是
  31. @ApiModelProperty(value = "是否少数民族村 1是 2 不是", name = "isMin")
  32. private String isMin;
  33. // 集中供水 1已覆盖 2未覆盖
  34. @ApiModelProperty(value = "集中供水 1已覆盖 2未覆盖", name = "isOver")
  35. private String isOver;
  36. // 其他
  37. @ApiModelProperty(value = "其他", name = "othNote")
  38. private String othNote;
  39. // 暗访日期
  40. @ApiModelProperty(value = "暗访日期", name = "tm")
  41. private Date tm;
  42. // 供水入户情况是否已入户或已具备入户条件
  43. @ApiModelProperty(value = "供水入户情况是否已入户或已具备入户条件", name = "isInHome")
  44. private String isInHome;
  45. // 总户数
  46. @ApiModelProperty(value = "总户数", name = "total")
  47. private Long total;
  48. // 已入户户数
  49. @ApiModelProperty(value = "已入户户数", name = "inTotal")
  50. private Long inTotal;
  51. // 供水入户率
  52. @ApiModelProperty(value = "供水入户率", name = "inRate")
  53. private String inRate;
  54. // 水费缴纳情况是否核定水价
  55. @ApiModelProperty(value = "水费缴纳情况是否核定水价", name = "isTari")
  56. private String isTari;
  57. // 水价元/立方
  58. @ApiModelProperty(value = "水价元/立方", name = "tariMet")
  59. private String tariMet;
  60. // 水价元/月
  61. @ApiModelProperty(value = "水价元/月", name = "tariMon")
  62. private String tariMon;
  63. // 水费缴纳情况-是否缴纳水费
  64. @ApiModelProperty(value = "水费缴纳情况-是否缴纳水费", name = "isPayCost")
  65. private String isPayCost;
  66. // 供水保障问题情况-是否有供水保障问题
  67. @ApiModelProperty(value = "供水保障问题情况-是否有供水保障问题", name = "isWaterSupply")
  68. private String isWaterSupply;
  69. // 供水保障问题 1水质浑浊 2水中有杂质 3有异味 4平时水量不足 5枯水期水量不足 6节假日高峰期水量不足 7平时水压不足 8季节性水压不足
  70. @ApiModelProperty(value = "供水保障问题 1水质浑浊 2水中有杂质 3有异味 4平时水量不足 5枯水期水量不足 6节假日高峰期水量不足 7平时水压不足 8季节性水压不足", name = "supplyPblm")
  71. private String supplyPblm;
  72. // 供水保障问题-其他
  73. @ApiModelProperty(value = "供水保障问题-其他", name = "supplyNote")
  74. private String supplyNote;
  75. // 记录人员ID
  76. @ApiModelProperty(value = "记录人员ID", name = "persId")
  77. private String persId;
  78. // 创建时间
  79. @ApiModelProperty(value = "创建时间", name = "intm")
  80. private Date intm;
  81. // 最后修改时间
  82. @ApiModelProperty(value = "最后修改时间", name = "uptm")
  83. private Date uptm;
  84. // 备注
  85. @ApiModelProperty(value = "备注", name = "note")
  86. private String note;
  87. // 数据状态(0:正常;9:删除)
  88. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  89. private String dataStat;
  90. @ApiModelProperty(value = "行政村用水户数量", name = "villUsrCount")
  91. private int villUsrCount;
  92. @ApiModelProperty(value = "行政村工程数量", name = "villWtspCount")
  93. private int villWtspCount;
  94. public BisInspVillgdVill() {
  95. }
  96. public int getVillUsrCount() {
  97. return villUsrCount;
  98. }
  99. public void setVillUsrCount(int villUsrCount) {
  100. this.villUsrCount = villUsrCount;
  101. }
  102. public int getVillWtspCount() {
  103. return villWtspCount;
  104. }
  105. public void setVillWtspCount(int villWtspCount) {
  106. this.villWtspCount = villWtspCount;
  107. }
  108. public String getId() {
  109. return id;
  110. }
  111. public void setId(String id) {
  112. this.id = id;
  113. }
  114. public String getRgstrId() {
  115. return rgstrId;
  116. }
  117. public void setRgstrId(String rgstrId) {
  118. this.rgstrId = rgstrId;
  119. }
  120. public String getNm() {
  121. return nm;
  122. }
  123. public void setNm(String nm) {
  124. this.nm = nm;
  125. }
  126. public String getLoc() {
  127. return loc;
  128. }
  129. public void setLoc(String loc) {
  130. this.loc = loc;
  131. }
  132. public String getIsPov() {
  133. return isPov;
  134. }
  135. public void setIsPov(String isPov) {
  136. this.isPov = isPov;
  137. }
  138. public String getIsMin() {
  139. return isMin;
  140. }
  141. public void setIsMin(String isMin) {
  142. this.isMin = isMin;
  143. }
  144. public String getIsOver() {
  145. return isOver;
  146. }
  147. public void setIsOver(String isOver) {
  148. this.isOver = isOver;
  149. }
  150. public String getOthNote() {
  151. return othNote;
  152. }
  153. public void setOthNote(String othNote) {
  154. this.othNote = othNote;
  155. }
  156. public Date getTm() {
  157. return tm;
  158. }
  159. public void setTm(Date tm) {
  160. this.tm = tm;
  161. }
  162. public String getIsInHome() {
  163. return isInHome;
  164. }
  165. public void setIsInHome(String isInHome) {
  166. this.isInHome = isInHome;
  167. }
  168. public Long getTotal() {
  169. return total;
  170. }
  171. public void setTotal(Long total) {
  172. this.total = total;
  173. }
  174. public Long getInTotal() {
  175. return inTotal;
  176. }
  177. public void setInTotal(Long inTotal) {
  178. this.inTotal = inTotal;
  179. }
  180. public String getInRate() {
  181. return inRate;
  182. }
  183. public void setInRate(String inRate) {
  184. this.inRate = inRate;
  185. }
  186. public String getIsTari() {
  187. return isTari;
  188. }
  189. public void setIsTari(String isTari) {
  190. this.isTari = isTari;
  191. }
  192. public String getTariMet() {
  193. return tariMet;
  194. }
  195. public void setTariMet(String tariMet) {
  196. this.tariMet = tariMet;
  197. }
  198. public String getTariMon() {
  199. return tariMon;
  200. }
  201. public void setTariMon(String tariMon) {
  202. this.tariMon = tariMon;
  203. }
  204. public String getIsPayCost() {
  205. return isPayCost;
  206. }
  207. public void setIsPayCost(String isPayCost) {
  208. this.isPayCost = isPayCost;
  209. }
  210. public String getIsWaterSupply() {
  211. return isWaterSupply;
  212. }
  213. public void setIsWaterSupply(String isWaterSupply) {
  214. this.isWaterSupply = isWaterSupply;
  215. }
  216. public String getSupplyPblm() {
  217. return supplyPblm;
  218. }
  219. public void setSupplyPblm(String supplyPblm) {
  220. this.supplyPblm = supplyPblm;
  221. }
  222. public String getSupplyNote() {
  223. return supplyNote;
  224. }
  225. public void setSupplyNote(String supplyNote) {
  226. this.supplyNote = supplyNote;
  227. }
  228. public String getPersId() {
  229. return persId;
  230. }
  231. public void setPersId(String persId) {
  232. this.persId = persId;
  233. }
  234. public Date getIntm() {
  235. return intm;
  236. }
  237. public void setIntm(Date intm) {
  238. this.intm = intm;
  239. }
  240. public Date getUptm() {
  241. return uptm;
  242. }
  243. public void setUptm(Date uptm) {
  244. this.uptm = uptm;
  245. }
  246. public String getNote() {
  247. return note;
  248. }
  249. public void setNote(String note) {
  250. this.note = note;
  251. }
  252. public String getDataStat() {
  253. return dataStat;
  254. }
  255. public void setDataStat(String dataStat) {
  256. this.dataStat = dataStat;
  257. }
  258. @Override
  259. public String toString() {
  260. return "BisInspVillgdVill [" + "id=" + id + ", rgstrId=" + rgstrId + ", nm=" + nm + ", loc=" + loc + ", isPov=" + isPov + ", isMin=" + isMin + ", isOver=" + isOver + ", othNote=" + othNote + ", tm=" + tm + ", isInHome=" + isInHome + ", total=" + total + ", inTotal=" + inTotal + ", inRate=" + inRate + ", isTari=" + isTari + ", tariMet=" + tariMet + ", tariMon=" + tariMon + ", isPayCost=" + isPayCost + ", isWaterSupply=" + isWaterSupply + ", supplyPblm=" + supplyPblm + ", supplyNote=" + supplyNote + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + ", dataStat=" + dataStat + "]";
  261. }
  262. }