6c77eec1a15cc7e6f5aba57926832ee8343ba3a6.svn-base 6.2 KB

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