| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import io.swagger.annotations.ApiModelProperty;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- /**
- * entity:BisInspWateruserInfo
- *
- * @author zhengdafei
- * @date 2019-3-19
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspWateruserInfo extends BaseBean implements Serializable {
- private static final long serialVersionUID = 1L;
- //引水工程名称
- @ApiModelProperty(value = "引水工程名称")
- private String cwsName;
- //电话
- @ApiModelProperty(value = "电话")
- private String telphone;
- //对应工程
- @ApiModelProperty(value = "对应工程")
- private String cwsCode;
- //水质是否良好
- @ApiModelProperty(value = "水质是否良好")
- private String isQualityGood;
- //是否水质存在问题
- @ApiModelProperty(value = "是否水质存在问题")
- private String isQualityProblem;
- //水质存在问题
- @ApiModelProperty(value = "水质存在问题")
- private String qualityProblem;
- //是否供水入户
- @ApiModelProperty(value = "是否供水入户")
- private String isSplyHome;
- //是否24小时供水
- @ApiModelProperty(value = "是否24小时供水")
- private String is24hSupply;
- //是否水量存在问题
- @ApiModelProperty(value = "是否水量存在问题")
- private String isWaterProblem;
- //水量存在问题
- @ApiModelProperty(value = "水量存在问题")
- private String waterProblem;
- //是否计量收费
- @ApiModelProperty(value = "是否计量收费")
- private String isCalFee;
- //收费是否存在问题
- @ApiModelProperty(value = "收费是否存在问题")
- private String isFeeProblem;
- //收费存在问题
- @ApiModelProperty(value = "收费存在问题")
- private String feeProblem;
- //是否供水存在问题
- @ApiModelProperty(value = "是否供水存在问题")
- private String isSplyProblem;
- //供水存在问题
- @ApiModelProperty(value = "供水存在问题")
- private String splyProblem;
- //总体评价
- @ApiModelProperty(value = "总体评价")
- private String evaluate;
- //暗访日期
- @ApiModelProperty(value = "暗访日期")
- private String visitDate;
- //记录人员ID
- @ApiModelProperty(value = "记录人员ID")
- private String recPersId;
- //记录人员
- @ApiModelProperty(value = "记录人员")
- private String recPers2;
- //记录人员电话
- @ApiModelProperty(value = "记录人员电话")
- private String recPersTel;
- //创建时间
- @ApiModelProperty(value = "创建时间")
- private String createTime;
- //修改时间
- @ApiModelProperty(value = "修改时间")
- private String updateTime;
- //状态
- @ApiModelProperty(value = "状态")
- private String status;
- //村代码
- @ApiModelProperty(value = "村代码")
- private String villageCode;
- //用水户ID
- @ApiModelProperty(value = "用水户ID")
- private String prsnWaterId;
- //农村饮水工程登记表ID
- @ApiModelProperty(value = "农村饮水工程登记表ID")
- private String engId;
- //调查地点
- @ApiModelProperty(value = "调查地点")
- private String villageNm;
- //户主姓名
- @ApiModelProperty(value = "户主姓名")
- private String userNm;
- //是否定时供水 0 否 1 是
- @ApiModelProperty(value = "是否定时供水 0 否 1 是(长度:1,可为空:Y)")
- private String isHrSupply;
- //定时供水备注
- @ApiModelProperty(value = "定时供水备注(长度:400,可为空:Y)")
- private String hrNote;
- //单位水价
- @ApiModelProperty(value = "单位水价(精度:10,小数位:2,可为空:Y)")
- private Double waterFee;
- private String otherProblem ;
- public String getOtherProblem() {
- return otherProblem;
- }
- public void setOtherProblem(String otherProblem) {
- this.otherProblem = otherProblem;
- }
- public static long getSerialVersionUID() {
- return serialVersionUID;
- }
- public BisInspWateruserInfo() {
- }
- public String getCwsName() {
- return cwsName;
- }
- public void setCwsName(String cwsName) {
- this.cwsName = cwsName;
- }
- public String getTelphone() {
- return telphone;
- }
- public void setTelphone(String telphone) {
- this.telphone = telphone;
- }
- public String getCwsCode() {
- return cwsCode;
- }
- public void setCwsCode(String cwsCode) {
- this.cwsCode = cwsCode;
- }
- public String getIsQualityGood() {
- return isQualityGood;
- }
- public void setIsQualityGood(String isQualityGood) {
- this.isQualityGood = isQualityGood;
- }
- public String getIsQualityProblem() {
- return isQualityProblem;
- }
- public void setIsQualityProblem(String isQualityProblem) {
- this.isQualityProblem = isQualityProblem;
- }
- 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 getIsWaterProblem() {
- return isWaterProblem;
- }
- public void setIsWaterProblem(String isWaterProblem) {
- this.isWaterProblem = isWaterProblem;
- }
- 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 getIsFeeProblem() {
- return isFeeProblem;
- }
- public void setIsFeeProblem(String isFeeProblem) {
- this.isFeeProblem = isFeeProblem;
- }
- 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 getEvaluate() {
- return evaluate;
- }
- public void setEvaluate(String evaluate) {
- this.evaluate = evaluate;
- }
- public String getVisitDate() {
- return visitDate;
- }
- public void setVisitDate(String visitDate) {
- this.visitDate = visitDate;
- }
- 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;
- }
- public String getVillageCode() {
- return villageCode;
- }
- public void setVillageCode(String villageCode) {
- this.villageCode = villageCode;
- }
- public String getPrsnWaterId() {
- return prsnWaterId;
- }
- public void setPrsnWaterId(String prsnWaterId) {
- this.prsnWaterId = prsnWaterId;
- }
- public String getEngId() {
- return engId;
- }
- public void setEngId(String engId) {
- this.engId = engId;
- }
- 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 Double getWaterFee() {
- return waterFee;
- }
- public void setWaterFee(Double waterFee) {
- this.waterFee = waterFee;
- }
- public String getHrNote() {
- return hrNote;
- }
- public void setHrNote(String hrNote) {
- this.hrNote = hrNote;
- }
- public String getIsHrSupply() {
- return isHrSupply;
- }
- public void setIsHrSupply(String isHrSupply) {
- this.isHrSupply = isHrSupply;
- }
- @Override
- public String toString() {
- return "BisInspWateruserInfo [" + "cwsName=" + cwsName + ", telphone=" + telphone + ", cwsCode=" + cwsCode + ", isQualityGood=" + isQualityGood + ", isQualityProblem=" + isQualityProblem + ", qualityProblem=" + qualityProblem + ", isSplyHome=" + isSplyHome + ", is24hSupply=" + is24hSupply + ", isWaterProblem=" + isWaterProblem + ", waterProblem=" + waterProblem + ", isCalFee=" + isCalFee + ", isFeeProblem=" + isFeeProblem + ", feeProblem=" + feeProblem + ", isSplyProblem=" + isSplyProblem + ", splyProblem=" + splyProblem + ", evaluate=" + evaluate + ", visitDate=" + visitDate + ", recPersId=" + recPersId + ", recPers2=" + recPers2 + ", recPersTel=" + recPersTel + ", createTime=" + createTime + ", updateTime=" + updateTime + ", status=" + status + ", villageCode=" + villageCode + ", prsnWaterId=" + prsnWaterId + ", engId=" + engId + ", villageNm=" + villageNm + ", userNm=" + userNm + ", isHrSupply=" + isHrSupply + ", hrNote=" + hrNote + ", waterFee=" + waterFee + "]";
- }
- }
|