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:AttFjpjmgdpBase * * @author lhc * @date 2023-11-8 */ @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"}) public class AttFjpjmgdpBase extends BaseBean implements Serializable { // ID @ApiModelProperty(value = "ID", name = "id") private String id; // 水利工程管理单位名称 @ApiModelProperty(value = "水利工程管理单位名称", name = "name") private String name; // 行政区划编码 @ApiModelProperty(value = "行政区划编码", name = "adCode") private String adCode; // 行政区划 @ApiModelProperty(value = "行政区划", name = "adName") private String adName; // 地址 @ApiModelProperty(value = "地址", name = "busAddr") private String busAddr; // 联系人 @ApiModelProperty(value = "联系人", name = "conPers") private String conPers; // 联系人电话 @ApiModelProperty(value = "联系人电话", name = "conPersTel") private String conPersTel; // 经度 @ApiModelProperty(value = "经度", name = "centerX") private Double centerX; // 纬度 @ApiModelProperty(value = "纬度", name = "centerY") private Double centerY; // 高德经度 @ApiModelProperty(value = "高德经度", name = "gdX") private Double gdX; // 高德纬度 @ApiModelProperty(value = "高德纬度", name = "gdY") private Double gdY; // 记录人员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; // 数据状态 @ApiModelProperty(value = "数据状态", name = "dataStat") private String dataStat; @ApiModelProperty(value = "是否符合申请条件 1 符合 2 不符合", name = "state") private String isCnfm; public String getIsCnfm() { return isCnfm; } public void setIsCnfm(String isCnfm) { this.isCnfm = isCnfm; } public AttFjpjmgdpBase() { } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } 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 getBusAddr() { return busAddr; } public void setBusAddr(String busAddr) { this.busAddr = busAddr; } public String getConPers() { return conPers; } public void setConPers(String conPers) { this.conPers = conPers; } public String getConPersTel() { return conPersTel; } public void setConPersTel(String conPersTel) { this.conPersTel = conPersTel; } 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 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 "AttFjpjmgdpBase [" + "id=" + id + ", name=" + name + ", adCode=" + adCode + ", adName=" + adName + ", busAddr=" + busAddr + ", conPers=" + conPers + ", conPersTel=" + conPersTel + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + ", dataStat=" + dataStat + "]"; } }