| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438 |
- 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:BisNewWateruserInfo
- *
- * @author lune
- * @date 2020-3-31
- */
- @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
- public class BisNewWateruserInfo extends BaseBean implements Serializable {
- private Double lgtd;
- private Double lttd;
- private Double lgtdpc;
- private Double lttdpc;
- @ApiModelProperty("水量是否够用")
- private String isWaterReach;
- @ApiModelProperty("两步制水价价格,计量水价存放")
- private String jiliangPriceTwo;
- @ApiModelProperty("两步制水价价格,固定水价存放")
- private String gudingPriceTwo;
- @ApiModelProperty("1为月元。户/2为月人。户")
- private String gudingPriceDw;
- @ApiModelProperty("固定水价,以及两步制水价固定水价部分")
- private String gudingPrice;
- @ApiModelProperty("存放限制额度(两步制水价限额)")
- private String xianEPrice;
- @ApiModelProperty("单一制水价价格,计量水价存放,水费类型1,4存放")
- private String jiliangPrice;
- @ApiModelProperty("阶梯水价1")
- private String jietiPriceOne;
- @ApiModelProperty("阶梯水价2")
- private String jietiPriceTwo;
- @ApiModelProperty("阶梯水价3")
- private String jietiPriceThree;
- @ApiModelProperty("阶梯水价,阶梯限额1")
- private String jietiXianeOne;
- @ApiModelProperty("阶梯水价,阶梯限额2")
- private String jietiXianeTwo;
- @ApiModelProperty("阶梯水价,阶梯限额3")
- private String jietiXianeThree;
- @ApiModelProperty("人饮督查登记表id")
- private String regstrId;
- @ApiModelProperty("用水户ID")
- private String id;
- @ApiModelProperty("行政村编码")
- private String adCode;
- @ApiModelProperty("调查地点,村组")
- private String villageNm;
- @ApiModelProperty("户主姓名")
- private String userNm;
- @ApiModelProperty("电话")
- private String telphone;
- @ApiModelProperty("水质是否良好,1是,2否")
- private String isQualityGood;
- @ApiModelProperty("水质存在问题")
- private String qualityProblem;
- @ApiModelProperty("是否供水入户,1是,2否")
- private String isSplyHome;
- @ApiModelProperty("是否24小时供水,1是,2否")
- private String is24hSupply;
- @ApiModelProperty("水量存在问题")
- private String waterProblem;
- @ApiModelProperty("是否收取水费,1是,2否")
- private String isCalFee;
- @ApiModelProperty("水价类型")
- private String feeType;
- @ApiModelProperty("计量水价信息")
- private String isJiliangFeeNote;
- @ApiModelProperty("计量水价类型")
- private String isJiliangFeeType;
- @ApiModelProperty("计量水价")
- private String isJiliangFee;
- @ApiModelProperty("固定水价信息")
- private String isGudingFeeNote;
- @ApiModelProperty("固定水价")
- private String isGudingFee;
- @ApiModelProperty("总体评价-是否解决问题")
- private String feeProblem;
- @ApiModelProperty("是否供水保证率存在问题,1是,2否")
- private String isSplyProblem;
- @ApiModelProperty("供水保证率存在问题")
- private String splyProblem;
- @ApiModelProperty("是否贫困县,1是,2否")
- private String isPkx;
- @ApiModelProperty("暗访日期")
- private Date visitDate;
- @ApiModelProperty("记录人员ID")
- private String persId;
- @ApiModelProperty("记录人员名称")
- private String recPers2;
- @ApiModelProperty("创建时间")
- private Date createTime;
- @ApiModelProperty("修改时间")
- private Date updateTime;
- private String status;
- @ApiModelProperty("用水是否方便,达标")
- private String isEasyUse;
- @ApiModelProperty("用水方便是否存在问题,1是,2否")
- private String easyUseProblem;
- @ApiModelProperty("是否知晓服务人员电话,1是,2否")
- private String isKnowServicer;
- @ApiModelProperty("是否进行电话回访")
- private String isCallRollback;
- @ApiModelProperty("信息备注")
- private String visiteNote;
- @ApiModelProperty("详细地址")
- private String adFullName;
- public BisNewWateruserInfo() {
- }
- public String getIsWaterReach() {
- return isWaterReach;
- }
- public void setIsWaterReach(String isWaterReach) {
- this.isWaterReach = isWaterReach;
- }
- public String getAdFullName() {
- return adFullName;
- }
- public void setAdFullName(String adFullName) {
- this.adFullName = adFullName;
- }
- public String getJiliangPriceTwo() {
- return jiliangPriceTwo;
- }
- public void setJiliangPriceTwo(String jiliangPriceTwo) {
- this.jiliangPriceTwo = jiliangPriceTwo;
- }
- public String getGudingPriceTwo() {
- return gudingPriceTwo;
- }
- public void setGudingPriceTwo(String gudingPriceTwo) {
- this.gudingPriceTwo = gudingPriceTwo;
- }
- public Double getLgtd() {
- return lgtd;
- }
- public void setLgtd(Double lgtd) {
- this.lgtd = lgtd;
- }
- public Double getLttd() {
- return lttd;
- }
- public void setLttd(Double lttd) {
- this.lttd = lttd;
- }
- public Double getLgtdpc() {
- return lgtdpc;
- }
- public void setLgtdpc(Double lgtdpc) {
- this.lgtdpc = lgtdpc;
- }
- public Double getLttdpc() {
- return lttdpc;
- }
- public void setLttdpc(Double lttdpc) {
- this.lttdpc = lttdpc;
- }
- public String getGudingPriceDw() {
- return gudingPriceDw;
- }
- public void setGudingPriceDw(String gudingPriceDw) {
- this.gudingPriceDw = gudingPriceDw;
- }
- public String getGudingPrice() {
- return gudingPrice;
- }
- public void setGudingPrice(String gudingPrice) {
- this.gudingPrice = gudingPrice;
- }
- public String getXianEPrice() {
- return xianEPrice;
- }
- public void setXianEPrice(String xianEPrice) {
- this.xianEPrice = xianEPrice;
- }
- public String getJiliangPrice() {
- return jiliangPrice;
- }
- public void setJiliangPrice(String jiliangPrice) {
- this.jiliangPrice = jiliangPrice;
- }
- public String getJietiPriceOne() {
- return jietiPriceOne;
- }
- public void setJietiPriceOne(String jietiPriceOne) {
- this.jietiPriceOne = jietiPriceOne;
- }
- public String getJietiPriceTwo() {
- return jietiPriceTwo;
- }
- public void setJietiPriceTwo(String jietiPriceTwo) {
- this.jietiPriceTwo = jietiPriceTwo;
- }
- public String getJietiPriceThree() {
- return jietiPriceThree;
- }
- public void setJietiPriceThree(String jietiPriceThree) {
- this.jietiPriceThree = jietiPriceThree;
- }
- public String getJietiXianeOne() {
- return jietiXianeOne;
- }
- public void setJietiXianeOne(String jietiXianeOne) {
- this.jietiXianeOne = jietiXianeOne;
- }
- public String getJietiXianeTwo() {
- return jietiXianeTwo;
- }
- public void setJietiXianeTwo(String jietiXianeTwo) {
- this.jietiXianeTwo = jietiXianeTwo;
- }
- public String getJietiXianeThree() {
- return jietiXianeThree;
- }
- public void setJietiXianeThree(String jietiXianeThree) {
- this.jietiXianeThree = jietiXianeThree;
- }
- public String getRegstrId() {
- return regstrId;
- }
- public void setRegstrId(String regstrId) {
- this.regstrId = regstrId;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getAdCode() {
- return adCode;
- }
- public void setAdCode(String adCode) {
- this.adCode = adCode;
- }
- public String getVillageNm() {
- return villageNm;
- }
- public void setVillageNm(String villageNm) {
- this.villageNm = villageNm;
- }
- public String getUserNm() {
- return userNm;
- }
- public void setUserNm(String userNm) {
- this.userNm = userNm;
- }
- public String getTelphone() {
- return telphone;
- }
- public void setTelphone(String telphone) {
- this.telphone = telphone;
- }
- public String getIsQualityGood() {
- return isQualityGood;
- }
- public void setIsQualityGood(String isQualityGood) {
- this.isQualityGood = isQualityGood;
- }
- public String getQualityProblem() {
- return qualityProblem;
- }
- public void setQualityProblem(String qualityProblem) {
- this.qualityProblem = qualityProblem;
- }
- public String getIsSplyHome() {
- return isSplyHome;
- }
- public void setIsSplyHome(String isSplyHome) {
- this.isSplyHome = isSplyHome;
- }
- public String getIs24hSupply() {
- return is24hSupply;
- }
- public void setIs24hSupply(String is24hSupply) {
- this.is24hSupply = is24hSupply;
- }
- public String getWaterProblem() {
- return waterProblem;
- }
- public void setWaterProblem(String waterProblem) {
- this.waterProblem = waterProblem;
- }
- public String getIsCalFee() {
- return isCalFee;
- }
- public void setIsCalFee(String isCalFee) {
- this.isCalFee = isCalFee;
- }
- public String getFeeType() {
- return feeType;
- }
- public void setFeeType(String feeType) {
- this.feeType = feeType;
- }
- public String getIsJiliangFeeNote() {
- return isJiliangFeeNote;
- }
- public void setIsJiliangFeeNote(String isJiliangFeeNote) {
- this.isJiliangFeeNote = isJiliangFeeNote;
- }
- public String getIsJiliangFeeType() {
- return isJiliangFeeType;
- }
- public void setIsJiliangFeeType(String isJiliangFeeType) {
- this.isJiliangFeeType = isJiliangFeeType;
- }
- public String getIsJiliangFee() {
- return isJiliangFee;
- }
- public void setIsJiliangFee(String isJiliangFee) {
- this.isJiliangFee = isJiliangFee;
- }
- public String getIsGudingFeeNote() {
- return isGudingFeeNote;
- }
- public void setIsGudingFeeNote(String isGudingFeeNote) {
- this.isGudingFeeNote = isGudingFeeNote;
- }
- public String getIsGudingFee() {
- return isGudingFee;
- }
- public void setIsGudingFee(String isGudingFee) {
- this.isGudingFee = isGudingFee;
- }
- public String getFeeProblem() {
- return feeProblem;
- }
- public void setFeeProblem(String feeProblem) {
- this.feeProblem = feeProblem;
- }
- public String getIsSplyProblem() {
- return isSplyProblem;
- }
- public void setIsSplyProblem(String isSplyProblem) {
- this.isSplyProblem = isSplyProblem;
- }
- public String getSplyProblem() {
- return splyProblem;
- }
- public void setSplyProblem(String splyProblem) {
- this.splyProblem = splyProblem;
- }
- public String getIsPkx() {
- return isPkx;
- }
- public void setIsPkx(String isPkx) {
- this.isPkx = isPkx;
- }
- public Date getVisitDate() {
- return visitDate;
- }
- public void setVisitDate(Date visitDate) {
- this.visitDate = visitDate;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public String getRecPers2() {
- return recPers2;
- }
- public void setRecPers2(String recPers2) {
- this.recPers2 = recPers2;
- }
- public Date getCreateTime() {
- return createTime;
- }
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- public Date getUpdateTime() {
- return updateTime;
- }
- public void setUpdateTime(Date updateTime) {
- this.updateTime = updateTime;
- }
- public String getStatus() {
- return status;
- }
- public void setStatus(String status) {
- this.status = status;
- }
- public String getIsEasyUse() {
- return isEasyUse;
- }
- public void setIsEasyUse(String isEasyUse) {
- this.isEasyUse = isEasyUse;
- }
- public String getEasyUseProblem() {
- return easyUseProblem;
- }
- public void setEasyUseProblem(String easyUseProblem) {
- this.easyUseProblem = easyUseProblem;
- }
- public String getIsKnowServicer() {
- return isKnowServicer;
- }
- public void setIsKnowServicer(String isKnowServicer) {
- this.isKnowServicer = isKnowServicer;
- }
- public String getIsCallRollback() {
- return isCallRollback;
- }
- public void setIsCallRollback(String isCallRollback) {
- this.isCallRollback = isCallRollback;
- }
- public String getVisiteNote() {
- return visiteNote;
- }
- public void setVisiteNote(String visiteNote) {
- this.visiteNote = visiteNote;
- }
- @Override
- public String toString() {
- return "BisNewWateruserInfo [" + "lgtd=" + lgtd + ", lttd=" + lttd + ", lgtdpc=" + lgtdpc + ", lttdpc=" + lttdpc + ", gudingPriceDw=" + gudingPriceDw + ", gudingPrice=" + gudingPrice + ", xianEPrice=" + xianEPrice + ", jiliangPrice=" + jiliangPrice + ", jietiPriceOne=" + jietiPriceOne + ", jietiPriceTwo=" + jietiPriceTwo + ", jietiPriceThree=" + jietiPriceThree + ", jietiXianeOne=" + jietiXianeOne + ", jietiXianeTwo=" + jietiXianeTwo + ", jietiXianeThree=" + jietiXianeThree + ", regstrId=" + regstrId + ", id=" + id + ", adCode=" + adCode + ", villageNm=" + villageNm + ", userNm=" + userNm + ", telphone=" + telphone + ", isQualityGood=" + isQualityGood + ", qualityProblem=" + qualityProblem + ", isSplyHome=" + isSplyHome + ", is24hSupply=" + is24hSupply + ", waterProblem=" + waterProblem + ", isCalFee=" + isCalFee + ", feeType=" + feeType + ", isJiliangFeeNote=" + isJiliangFeeNote + ", isJiliangFeeType=" + isJiliangFeeType + ", isJiliangFee=" + isJiliangFee + ", isGudingFeeNote=" + isGudingFeeNote + ", isGudingFee=" + isGudingFee + ", feeProblem=" + feeProblem + ", isSplyProblem=" + isSplyProblem + ", splyProblem=" + splyProblem + ", isPkx=" + isPkx + ", visitDate=" + visitDate + ", persId=" + persId + ", recPers2=" + recPers2 + ", createTime=" + createTime + ", updateTime=" + updateTime + ", status=" + status + ", isEasyUse=" + isEasyUse + ", easyUseProblem=" + easyUseProblem + ", isKnowServicer=" + isKnowServicer + ", isCallRollback=" + isCallRollback + ", visiteNote=" + visiteNote + "]";
- }
- }
|