| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265 |
- 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 + "]";
- }
- }
|