package cn.com.goldenwater.dcproj.param; import cn.com.goldenwater.core.param.PageParam; import io.swagger.annotations.ApiParam; import java.io.Serializable; /** * BisInspManageResponsibilityParam * * @author zhengdafei * @date 2019-2-21 */ public class BisInspManageResponsibilityParam extends PageParam implements Serializable { // 县陪同人员 @ApiParam(name = "县陪同人员") private String accompany; // 管理责任落实ID @ApiParam(name = "管理责任落实ID") private String mngrId; // 农村饮水工程登记表ID @ApiParam(name = "农村饮水工程登记表ID") private String engId; // 县(区、市) @ApiParam(name = "县(区、市)") private String adCode; // 农村人口(万人) @ApiParam(name = "农村人口(万人)") private Double personAmount; // 集中供水率 @ApiParam(name = "集中供水率") private Double focusSupplyPerc; // 自来水普及率 @ApiParam(name = "自来水普及率") private Double waterSupplyPerc; // 地方人民政府主体责任是否明确 @ApiParam(name = "地方人民政府主体责任是否明确") private String isGovRes; // 水利部门行业监管责任是否明确 @ApiParam(name = "水利部门行业监管责任是否明确") private String isConRes; // 供水单位运行管理责任是否到位 @ApiParam(name = "供水单位运行管理责任是否到位") private String isDeptRes; // 是否建立县级运行管理机构 @ApiParam(name = "是否建立县级运行管理机构") private String isCntyDept; // 是否建立县级运行管理办法 @ApiParam(name = "是否建立县级运行管理办法") private String isCntyFunc; // 是否落实县级运行管理经费 @ApiParam(name = "是否落实县级运行管理经费") private String isCntyFee; // 是否正常开展水质巡检 @ApiParam(name = "是否正常开展水质巡检") private String isQuailtyChk; // 2018年落实运行经费(万元) @ApiParam(name = "2018年落实运行经费(万元)") private Double pracFee; // 暗访日期 @ApiParam(name = "暗访日期") private String visitDate; // 暗访组ID @ApiParam(name = "暗访组ID") private String visitorId; // 记录人员ID @ApiParam(name = "记录人员ID") private String recPersId; // 记录人员 @ApiParam(name = "记录人员") private String recPers2; // 记录人员电话 @ApiParam(name = "记录人员电话") private String recPersTel; // 创建时间 @ApiParam(name = "创建时间") private String createTime; // 修改时间 @ApiParam(name = "修改时间") private String updateTime; // 状态 @ApiParam(name = "状态") private String status; public BisInspManageResponsibilityParam() { } public String getAccompany() { return accompany; } public void setAccompany(String accompany) { this.accompany = accompany; } public String getMngrId() { return mngrId; } public void setMngrId(String mngrId) { this.mngrId = mngrId; } public String getEngId() { return engId; } public void setEngId(String engId) { this.engId = engId; } public String getAdCode() { return adCode; } public void setAdCode(String adCode) { this.adCode = adCode; } public Double getPersonAmount() { return personAmount; } public void setPersonAmount(Double personAmount) { this.personAmount = personAmount; } public Double getFocusSupplyPerc() { return focusSupplyPerc; } public void setFocusSupplyPerc(Double focusSupplyPerc) { this.focusSupplyPerc = focusSupplyPerc; } public Double getWaterSupplyPerc() { return waterSupplyPerc; } public void setWaterSupplyPerc(Double waterSupplyPerc) { this.waterSupplyPerc = waterSupplyPerc; } public String getIsGovRes() { return isGovRes; } public void setIsGovRes(String isGovRes) { this.isGovRes = isGovRes; } public String getIsConRes() { return isConRes; } public void setIsConRes(String isConRes) { this.isConRes = isConRes; } public String getIsDeptRes() { return isDeptRes; } public void setIsDeptRes(String isDeptRes) { this.isDeptRes = isDeptRes; } public String getIsCntyDept() { return isCntyDept; } public void setIsCntyDept(String isCntyDept) { this.isCntyDept = isCntyDept; } public String getIsCntyFunc() { return isCntyFunc; } public void setIsCntyFunc(String isCntyFunc) { this.isCntyFunc = isCntyFunc; } public String getIsCntyFee() { return isCntyFee; } public void setIsCntyFee(String isCntyFee) { this.isCntyFee = isCntyFee; } public String getIsQuailtyChk() { return isQuailtyChk; } public void setIsQuailtyChk(String isQuailtyChk) { this.isQuailtyChk = isQuailtyChk; } public Double getPracFee() { return pracFee; } public void setPracFee(Double pracFee) { this.pracFee = pracFee; } public String getVisitDate() { return visitDate; } public void setVisitDate(String visitDate) { this.visitDate = visitDate; } public String getVisitorId() { return visitorId; } public void setVisitorId(String visitorId) { this.visitorId = visitorId; } public String getRecPersId() { return recPersId; } public void setRecPersId(String recPersId) { this.recPersId = recPersId; } public String getRecPers2() { return recPers2; } public void setRecPers2(String recPers2) { this.recPers2 = recPers2; } public String getRecPersTel() { return recPersTel; } public void setRecPersTel(String recPersTel) { this.recPersTel = recPersTel; } public String getCreateTime() { return createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public String getUpdateTime() { return updateTime; } public void setUpdateTime(String updateTime) { this.updateTime = updateTime; } public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } }