f033938e5a689af042b11505fff5325abae95323.svn-base 6.2 KB

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