package cn.com.goldenwater.dcproj.model; import java.io.Serializable; import java.util.Date; import cn.com.goldenwater.core.model.BaseBean; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import io.swagger.annotations.ApiModelProperty; /** * entity:AttSwhsjsBase * * @author * @date 2022-2-23 */ @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"}) public class AttSwhsjsBase extends BaseBean implements Serializable { @ApiModelProperty("主键id") private String id; @ApiModelProperty("地表水水源地代码") private String swhsCode; @ApiModelProperty("地表水水源地名称") private String swhsName; @ApiModelProperty("行政区划编码") private String adCode; @ApiModelProperty("行政区划") private String adName; @ApiModelProperty("水源地类型--水库 1 湖泊 2 河流/ 河道 3 其他 9") private String wainWasoType; @ApiModelProperty("使用状态(1:城市日常 2:城市日常、应急 3:乡村日常 4:乡村日常、应急)") private String swhsUse; @ApiModelProperty("水源地级别 1:市级 2:县级 ") private String swhsLevel; @ApiModelProperty("取水口位置") private String wainLoc; @ApiModelProperty("管理单位名称") private String insName; @ApiModelProperty("管理单位联系人") private String insPer; @ApiModelProperty("管理单位联系人电话") private String insPerPhone; @ApiModelProperty("水行政主管部门") private String dept; @ApiModelProperty("水行政主管部门联系人") private String deptPer; @ApiModelProperty("水行政主管部门联系电话") private String deptPerPhone; @ApiModelProperty("地表水水源地经度") private Double centerX; @ApiModelProperty("地表水水源地纬度") private Double centerY; @ApiModelProperty("地表水水源地经度--高德") private Double gdX; @ApiModelProperty("地表水水源地纬度--高德") private Double gdY; @ApiModelProperty("人员id") private String persId; @ApiModelProperty("备注") private String note; @ApiModelProperty("创建时间") private Date intm; @ApiModelProperty("更新时间") private Date uptm; @ApiModelProperty("数据状态") private String dataStat; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getSwhsCode() { return swhsCode; } public void setSwhsCode(String swhsCode) { this.swhsCode = swhsCode; } public String getSwhsName() { return swhsName; } public void setSwhsName(String swhsName) { this.swhsName = swhsName; } public String getAdCode() { return adCode; } public void setAdCode(String adCode) { this.adCode = adCode; } public String getAdName() { return adName; } public void setAdName(String adName) { this.adName = adName; } public String getWainWasoType() { return wainWasoType; } public void setWainWasoType(String wainWasoType) { this.wainWasoType = wainWasoType; } public String getSwhsUse() { return swhsUse; } public void setSwhsUse(String swhsUse) { this.swhsUse = swhsUse; } public String getSwhsLevel() { return swhsLevel; } public void setSwhsLevel(String swhsLevel) { this.swhsLevel = swhsLevel; } public String getWainLoc() { return wainLoc; } public void setWainLoc(String wainLoc) { this.wainLoc = wainLoc; } public String getInsName() { return insName; } public void setInsName(String insName) { this.insName = insName; } public String getInsPer() { return insPer; } public void setInsPer(String insPer) { this.insPer = insPer; } public String getInsPerPhone() { return insPerPhone; } public void setInsPerPhone(String insPerPhone) { this.insPerPhone = insPerPhone; } public String getDept() { return dept; } public void setDept(String dept) { this.dept = dept; } public String getDeptPer() { return deptPer; } public void setDeptPer(String deptPer) { this.deptPer = deptPer; } public String getDeptPerPhone() { return deptPerPhone; } public void setDeptPerPhone(String deptPerPhone) { this.deptPerPhone = deptPerPhone; } public Double getCenterX() { return centerX; } public void setCenterX(Double centerX) { this.centerX = centerX; } public Double getCenterY() { return centerY; } public void setCenterY(Double centerY) { this.centerY = centerY; } public Double getGdX() { return gdX; } public void setGdX(Double gdX) { this.gdX = gdX; } public Double getGdY() { return gdY; } public void setGdY(Double gdY) { this.gdY = gdY; } public String getPersId() { return persId; } public void setPersId(String persId) { this.persId = persId; } public String getNote() { return note; } public void setNote(String note) { this.note = note; } 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 getDataStat() { return dataStat; } public void setDataStat(String dataStat) { this.dataStat = dataStat; } @Override public String toString() { return "AttSwhsjsBase [" + "id=" + id + ", swhsCode=" + swhsCode + ", swhsName=" + swhsName + ", adCode=" + adCode + ", adName=" + adName + ", wainWasoType=" + wainWasoType + ", swhsUse=" + swhsUse + ", swhsLevel=" + swhsLevel + ", wainLoc=" + wainLoc + ", insName=" + insName + ", insPer=" + insPer + ", insPerPhone=" + insPerPhone + ", dept=" + dept + ", deptPer=" + deptPer + ", deptPerPhone=" + deptPerPhone + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", persId=" + persId + ", note=" + note + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]"; } }