package cn.com.goldenwater.dcproj.model; import cn.com.goldenwater.core.model.BaseBean; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; import java.util.Date; /** * entity:BisInspVillgdVill * * @author lhc * @date 2021-4-23 */ @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"}) public class BisInspVillgdVill extends BaseBean implements Serializable { // 主键ID @ApiModelProperty(value = "主键ID", name = "id") private String id; // 登记表ID @ApiModelProperty(value = "登记表ID", name = "rgstrId") private String rgstrId; // 村名 @ApiModelProperty(value = "村名", name = "nm") private String nm; // 位置 @ApiModelProperty(value = "位置", name = "loc") private String loc; // 是否省定贫困村 1是 2 不是 @ApiModelProperty(value = "是否省定贫困村 1是 2 不是", name = "isPov") private String isPov; // 是否少数民族村 1是 2 不是 @ApiModelProperty(value = "是否少数民族村 1是 2 不是", name = "isMin") private String isMin; // 集中供水 1已覆盖 2未覆盖 @ApiModelProperty(value = "集中供水 1已覆盖 2未覆盖", name = "isOver") private String isOver; // 其他 @ApiModelProperty(value = "其他", name = "othNote") private String othNote; // 暗访日期 @ApiModelProperty(value = "暗访日期", name = "tm") private Date tm; // 供水入户情况是否已入户或已具备入户条件 @ApiModelProperty(value = "供水入户情况是否已入户或已具备入户条件", name = "isInHome") private String isInHome; // 总户数 @ApiModelProperty(value = "总户数", name = "total") private Long total; // 已入户户数 @ApiModelProperty(value = "已入户户数", name = "inTotal") private Long inTotal; // 供水入户率 @ApiModelProperty(value = "供水入户率", name = "inRate") private String inRate; // 水费缴纳情况是否核定水价 @ApiModelProperty(value = "水费缴纳情况是否核定水价", name = "isTari") private String isTari; // 水价元/立方 @ApiModelProperty(value = "水价元/立方", name = "tariMet") private String tariMet; // 水价元/月 @ApiModelProperty(value = "水价元/月", name = "tariMon") private String tariMon; // 水费缴纳情况-是否缴纳水费 @ApiModelProperty(value = "水费缴纳情况-是否缴纳水费", name = "isPayCost") private String isPayCost; // 供水保障问题情况-是否有供水保障问题 @ApiModelProperty(value = "供水保障问题情况-是否有供水保障问题", name = "isWaterSupply") private String isWaterSupply; // 供水保障问题 1水质浑浊 2水中有杂质 3有异味 4平时水量不足 5枯水期水量不足 6节假日高峰期水量不足 7平时水压不足 8季节性水压不足 @ApiModelProperty(value = "供水保障问题 1水质浑浊 2水中有杂质 3有异味 4平时水量不足 5枯水期水量不足 6节假日高峰期水量不足 7平时水压不足 8季节性水压不足", name = "supplyPblm") private String supplyPblm; // 供水保障问题-其他 @ApiModelProperty(value = "供水保障问题-其他", name = "supplyNote") private String supplyNote; // 记录人员ID @ApiModelProperty(value = "记录人员ID", name = "persId") private String persId; // 创建时间 @ApiModelProperty(value = "创建时间", name = "intm") private Date intm; // 最后修改时间 @ApiModelProperty(value = "最后修改时间", name = "uptm") private Date uptm; // 备注 @ApiModelProperty(value = "备注", name = "note") private String note; // 数据状态(0:正常;9:删除) @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat") private String dataStat; @ApiModelProperty(value = "行政村用水户数量", name = "villUsrCount") private int villUsrCount; @ApiModelProperty(value = "行政村工程数量", name = "villWtspCount") private int villWtspCount; public BisInspVillgdVill() { } public int getVillUsrCount() { return villUsrCount; } public void setVillUsrCount(int villUsrCount) { this.villUsrCount = villUsrCount; } public int getVillWtspCount() { return villWtspCount; } public void setVillWtspCount(int villWtspCount) { this.villWtspCount = villWtspCount; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getRgstrId() { return rgstrId; } public void setRgstrId(String rgstrId) { this.rgstrId = rgstrId; } public String getNm() { return nm; } public void setNm(String nm) { this.nm = nm; } public String getLoc() { return loc; } public void setLoc(String loc) { this.loc = loc; } public String getIsPov() { return isPov; } public void setIsPov(String isPov) { this.isPov = isPov; } public String getIsMin() { return isMin; } public void setIsMin(String isMin) { this.isMin = isMin; } public String getIsOver() { return isOver; } public void setIsOver(String isOver) { this.isOver = isOver; } public String getOthNote() { return othNote; } public void setOthNote(String othNote) { this.othNote = othNote; } public Date getTm() { return tm; } public void setTm(Date tm) { this.tm = tm; } public String getIsInHome() { return isInHome; } public void setIsInHome(String isInHome) { this.isInHome = isInHome; } public Long getTotal() { return total; } public void setTotal(Long total) { this.total = total; } public Long getInTotal() { return inTotal; } public void setInTotal(Long inTotal) { this.inTotal = inTotal; } public String getInRate() { return inRate; } public void setInRate(String inRate) { this.inRate = inRate; } public String getIsTari() { return isTari; } public void setIsTari(String isTari) { this.isTari = isTari; } public String getTariMet() { return tariMet; } public void setTariMet(String tariMet) { this.tariMet = tariMet; } public String getTariMon() { return tariMon; } public void setTariMon(String tariMon) { this.tariMon = tariMon; } public String getIsPayCost() { return isPayCost; } public void setIsPayCost(String isPayCost) { this.isPayCost = isPayCost; } public String getIsWaterSupply() { return isWaterSupply; } public void setIsWaterSupply(String isWaterSupply) { this.isWaterSupply = isWaterSupply; } public String getSupplyPblm() { return supplyPblm; } public void setSupplyPblm(String supplyPblm) { this.supplyPblm = supplyPblm; } public String getSupplyNote() { return supplyNote; } public void setSupplyNote(String supplyNote) { this.supplyNote = supplyNote; } public String getPersId() { return persId; } public void setPersId(String persId) { this.persId = persId; } public Date getIntm() { return intm; } public void setIntm(Date intm) { this.intm = intm; } public Date getUptm() { return uptm; } public void setUptm(Date uptm) { this.uptm = uptm; } public String getNote() { return note; } public void setNote(String note) { this.note = note; } public String getDataStat() { return dataStat; } public void setDataStat(String dataStat) { this.dataStat = dataStat; } @Override public String toString() { return "BisInspVillgdVill [" + "id=" + id + ", rgstrId=" + rgstrId + ", nm=" + nm + ", loc=" + loc + ", isPov=" + isPov + ", isMin=" + isMin + ", isOver=" + isOver + ", othNote=" + othNote + ", tm=" + tm + ", isInHome=" + isInHome + ", total=" + total + ", inTotal=" + inTotal + ", inRate=" + inRate + ", isTari=" + isTari + ", tariMet=" + tariMet + ", tariMon=" + tariMon + ", isPayCost=" + isPayCost + ", isWaterSupply=" + isWaterSupply + ", supplyPblm=" + supplyPblm + ", supplyNote=" + supplyNote + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + ", dataStat=" + dataStat + "]"; } }