08cc8d0378cc47debe8226b6c1bdd4aba34266d6.svn-base 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  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. * BisNewVillRgstrParam
  8. *
  9. * @author lune
  10. * @date 2020-3-27
  11. */
  12. public class BisNewVillRgstrParam extends PageParam implements Serializable {
  13. @ApiModelProperty("行政村数量")
  14. private int villNum;
  15. @ApiModelProperty("人饮工程数量")
  16. private int proNum;
  17. @ApiModelProperty("用水户数量")
  18. private int waterNum;
  19. @ApiModelProperty("高德经度")
  20. private Double lgtd;
  21. @ApiModelProperty("高德纬度")
  22. private Double lttd;
  23. @ApiModelProperty("pc经度")
  24. private Double lgtdpc;
  25. @ApiModelProperty("pc纬度")
  26. private Double lttdpc;
  27. @ApiModelProperty("农村饮水工程登记表ID")
  28. private String id;
  29. @ApiModelProperty("督查对象ID")
  30. private String objId;
  31. @ApiModelProperty("督查对象名称")
  32. private String regsNm;
  33. @ApiModelProperty("水价相关政策制定情况")
  34. private String waterPriceIsMade;
  35. @ApiModelProperty("农饮安全水费收缴水质保障")
  36. private String waterSafeOrPay;
  37. @ApiModelProperty("行政区编码")
  38. private String adCode;
  39. @ApiModelProperty("记录人员ID")
  40. private String persId;
  41. @ApiModelProperty("创建时间")
  42. private Date intm;
  43. @ApiModelProperty("最后修改时间")
  44. private Date uptm;
  45. @ApiModelProperty("备注")
  46. private String note;
  47. @ApiModelProperty("数据状态")
  48. private String dataStat;
  49. @ApiModelProperty("状态")
  50. private String state;
  51. @ApiModelProperty("行政区划名")
  52. private String adFullName;
  53. @ApiModelProperty("是否贫困县")
  54. private String isPkx;
  55. @ApiModelProperty("是否氟超标")
  56. private String isFoOver;
  57. public BisNewVillRgstrParam() {
  58. }
  59. public int getVillNum() {
  60. return villNum;
  61. }
  62. public void setVillNum(int villNum) {
  63. this.villNum = villNum;
  64. }
  65. public int getProNum() {
  66. return proNum;
  67. }
  68. public void setProNum(int proNum) {
  69. this.proNum = proNum;
  70. }
  71. public int getWaterNum() {
  72. return waterNum;
  73. }
  74. public void setWaterNum(int waterNum) {
  75. this.waterNum = waterNum;
  76. }
  77. public Double getLgtd() {
  78. return lgtd;
  79. }
  80. public void setLgtd(Double lgtd) {
  81. this.lgtd = lgtd;
  82. }
  83. public Double getLttd() {
  84. return lttd;
  85. }
  86. public void setLttd(Double lttd) {
  87. this.lttd = lttd;
  88. }
  89. public Double getLgtdpc() {
  90. return lgtdpc;
  91. }
  92. public void setLgtdpc(Double lgtdpc) {
  93. this.lgtdpc = lgtdpc;
  94. }
  95. public Double getLttdpc() {
  96. return lttdpc;
  97. }
  98. public void setLttdpc(Double lttdpc) {
  99. this.lttdpc = lttdpc;
  100. }
  101. public String getId() {
  102. return id;
  103. }
  104. public void setId(String id) {
  105. this.id = id;
  106. }
  107. public String getObjId() {
  108. return objId;
  109. }
  110. public void setObjId(String objId) {
  111. this.objId = objId;
  112. }
  113. public String getRegsNm() {
  114. return regsNm;
  115. }
  116. public void setRegsNm(String regsNm) {
  117. this.regsNm = regsNm;
  118. }
  119. public String getWaterPriceIsMade() {
  120. return waterPriceIsMade;
  121. }
  122. public void setWaterPriceIsMade(String waterPriceIsMade) {
  123. this.waterPriceIsMade = waterPriceIsMade;
  124. }
  125. public String getWaterSafeOrPay() {
  126. return waterSafeOrPay;
  127. }
  128. public void setWaterSafeOrPay(String waterSafeOrPay) {
  129. this.waterSafeOrPay = waterSafeOrPay;
  130. }
  131. public String getAdCode() {
  132. return adCode;
  133. }
  134. public void setAdCode(String adCode) {
  135. this.adCode = adCode;
  136. }
  137. public String getPersId() {
  138. return persId;
  139. }
  140. public void setPersId(String persId) {
  141. this.persId = persId;
  142. }
  143. public Date getIntm() {
  144. return intm;
  145. }
  146. public void setIntm(Date intm) {
  147. this.intm = intm;
  148. }
  149. public Date getUptm() {
  150. return uptm;
  151. }
  152. public void setUptm(Date uptm) {
  153. this.uptm = uptm;
  154. }
  155. public String getNote() {
  156. return note;
  157. }
  158. public void setNote(String note) {
  159. this.note = note;
  160. }
  161. public String getDataStat() {
  162. return dataStat;
  163. }
  164. public void setDataStat(String dataStat) {
  165. this.dataStat = dataStat;
  166. }
  167. public String getState() {
  168. return state;
  169. }
  170. public void setState(String state) {
  171. this.state = state;
  172. }
  173. public String getAdFullName() {
  174. return adFullName;
  175. }
  176. public void setAdFullName(String adFullName) {
  177. this.adFullName = adFullName;
  178. }
  179. public String getIsPkx() {
  180. return isPkx;
  181. }
  182. public void setIsPkx(String isPkx) {
  183. this.isPkx = isPkx;
  184. }
  185. public String getIsFoOver() {
  186. return isFoOver;
  187. }
  188. public void setIsFoOver(String isFoOver) {
  189. this.isFoOver = isFoOver;
  190. }
  191. }