0bf4521d518718ac5f76c9e0b3ff7ee23823cc8f.svn-base 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiParam;
  4. import java.io.Serializable;
  5. /**
  6. * BisInspManageResponsibilityParam
  7. *
  8. * @author zhengdafei
  9. * @date 2019-2-21
  10. */
  11. public class BisInspManageResponsibilityParam extends PageParam implements Serializable {
  12. // 县陪同人员
  13. @ApiParam(name = "县陪同人员")
  14. private String accompany;
  15. // 管理责任落实ID
  16. @ApiParam(name = "管理责任落实ID")
  17. private String mngrId;
  18. // 农村饮水工程登记表ID
  19. @ApiParam(name = "农村饮水工程登记表ID")
  20. private String engId;
  21. // 县(区、市)
  22. @ApiParam(name = "县(区、市)")
  23. private String adCode;
  24. // 农村人口(万人)
  25. @ApiParam(name = "农村人口(万人)")
  26. private Double personAmount;
  27. // 集中供水率
  28. @ApiParam(name = "集中供水率")
  29. private Double focusSupplyPerc;
  30. // 自来水普及率
  31. @ApiParam(name = "自来水普及率")
  32. private Double waterSupplyPerc;
  33. // 地方人民政府主体责任是否明确
  34. @ApiParam(name = "地方人民政府主体责任是否明确")
  35. private String isGovRes;
  36. // 水利部门行业监管责任是否明确
  37. @ApiParam(name = "水利部门行业监管责任是否明确")
  38. private String isConRes;
  39. // 供水单位运行管理责任是否到位
  40. @ApiParam(name = "供水单位运行管理责任是否到位")
  41. private String isDeptRes;
  42. // 是否建立县级运行管理机构
  43. @ApiParam(name = "是否建立县级运行管理机构")
  44. private String isCntyDept;
  45. // 是否建立县级运行管理办法
  46. @ApiParam(name = "是否建立县级运行管理办法")
  47. private String isCntyFunc;
  48. // 是否落实县级运行管理经费
  49. @ApiParam(name = "是否落实县级运行管理经费")
  50. private String isCntyFee;
  51. // 是否正常开展水质巡检
  52. @ApiParam(name = "是否正常开展水质巡检")
  53. private String isQuailtyChk;
  54. // 2018年落实运行经费(万元)
  55. @ApiParam(name = "2018年落实运行经费(万元)")
  56. private Double pracFee;
  57. // 暗访日期
  58. @ApiParam(name = "暗访日期")
  59. private String visitDate;
  60. // 暗访组ID
  61. @ApiParam(name = "暗访组ID")
  62. private String visitorId;
  63. // 记录人员ID
  64. @ApiParam(name = "记录人员ID")
  65. private String recPersId;
  66. // 记录人员
  67. @ApiParam(name = "记录人员")
  68. private String recPers2;
  69. // 记录人员电话
  70. @ApiParam(name = "记录人员电话")
  71. private String recPersTel;
  72. // 创建时间
  73. @ApiParam(name = "创建时间")
  74. private String createTime;
  75. // 修改时间
  76. @ApiParam(name = "修改时间")
  77. private String updateTime;
  78. // 状态
  79. @ApiParam(name = "状态")
  80. private String status;
  81. public BisInspManageResponsibilityParam() {
  82. }
  83. public String getAccompany() {
  84. return accompany;
  85. }
  86. public void setAccompany(String accompany) {
  87. this.accompany = accompany;
  88. }
  89. public String getMngrId() {
  90. return mngrId;
  91. }
  92. public void setMngrId(String mngrId) {
  93. this.mngrId = mngrId;
  94. }
  95. public String getEngId() {
  96. return engId;
  97. }
  98. public void setEngId(String engId) {
  99. this.engId = engId;
  100. }
  101. public String getAdCode() {
  102. return adCode;
  103. }
  104. public void setAdCode(String adCode) {
  105. this.adCode = adCode;
  106. }
  107. public Double getPersonAmount() {
  108. return personAmount;
  109. }
  110. public void setPersonAmount(Double personAmount) {
  111. this.personAmount = personAmount;
  112. }
  113. public Double getFocusSupplyPerc() {
  114. return focusSupplyPerc;
  115. }
  116. public void setFocusSupplyPerc(Double focusSupplyPerc) {
  117. this.focusSupplyPerc = focusSupplyPerc;
  118. }
  119. public Double getWaterSupplyPerc() {
  120. return waterSupplyPerc;
  121. }
  122. public void setWaterSupplyPerc(Double waterSupplyPerc) {
  123. this.waterSupplyPerc = waterSupplyPerc;
  124. }
  125. public String getIsGovRes() {
  126. return isGovRes;
  127. }
  128. public void setIsGovRes(String isGovRes) {
  129. this.isGovRes = isGovRes;
  130. }
  131. public String getIsConRes() {
  132. return isConRes;
  133. }
  134. public void setIsConRes(String isConRes) {
  135. this.isConRes = isConRes;
  136. }
  137. public String getIsDeptRes() {
  138. return isDeptRes;
  139. }
  140. public void setIsDeptRes(String isDeptRes) {
  141. this.isDeptRes = isDeptRes;
  142. }
  143. public String getIsCntyDept() {
  144. return isCntyDept;
  145. }
  146. public void setIsCntyDept(String isCntyDept) {
  147. this.isCntyDept = isCntyDept;
  148. }
  149. public String getIsCntyFunc() {
  150. return isCntyFunc;
  151. }
  152. public void setIsCntyFunc(String isCntyFunc) {
  153. this.isCntyFunc = isCntyFunc;
  154. }
  155. public String getIsCntyFee() {
  156. return isCntyFee;
  157. }
  158. public void setIsCntyFee(String isCntyFee) {
  159. this.isCntyFee = isCntyFee;
  160. }
  161. public String getIsQuailtyChk() {
  162. return isQuailtyChk;
  163. }
  164. public void setIsQuailtyChk(String isQuailtyChk) {
  165. this.isQuailtyChk = isQuailtyChk;
  166. }
  167. public Double getPracFee() {
  168. return pracFee;
  169. }
  170. public void setPracFee(Double pracFee) {
  171. this.pracFee = pracFee;
  172. }
  173. public String getVisitDate() {
  174. return visitDate;
  175. }
  176. public void setVisitDate(String visitDate) {
  177. this.visitDate = visitDate;
  178. }
  179. public String getVisitorId() {
  180. return visitorId;
  181. }
  182. public void setVisitorId(String visitorId) {
  183. this.visitorId = visitorId;
  184. }
  185. public String getRecPersId() {
  186. return recPersId;
  187. }
  188. public void setRecPersId(String recPersId) {
  189. this.recPersId = recPersId;
  190. }
  191. public String getRecPers2() {
  192. return recPers2;
  193. }
  194. public void setRecPers2(String recPers2) {
  195. this.recPers2 = recPers2;
  196. }
  197. public String getRecPersTel() {
  198. return recPersTel;
  199. }
  200. public void setRecPersTel(String recPersTel) {
  201. this.recPersTel = recPersTel;
  202. }
  203. public String getCreateTime() {
  204. return createTime;
  205. }
  206. public void setCreateTime(String createTime) {
  207. this.createTime = createTime;
  208. }
  209. public String getUpdateTime() {
  210. return updateTime;
  211. }
  212. public void setUpdateTime(String updateTime) {
  213. this.updateTime = updateTime;
  214. }
  215. public String getStatus() {
  216. return status;
  217. }
  218. public void setStatus(String status) {
  219. this.status = status;
  220. }
  221. }