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:BisInspBaseNew * * @author lql * @date 2026-1-12 */ @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"}) public class BisInspBaseNew extends BaseBean implements Serializable { // 对象ID @ApiModelProperty(value = "对象ID", name = "id") private String id; // 督查对象类型 @ApiModelProperty(value = "督查对象类型", name = "objType") private String objType; // 督察对象编码 @ApiModelProperty(value = "督察对象编码", name = "code") private String code; // 督查对象名称 @ApiModelProperty(value = "督查对象名称", name = "nm") private String nm; // 所在地行政区编码 @ApiModelProperty(value = "所在地行政区编码", name = "adCode") private String adCode; // 所在地行政区 @ApiModelProperty(value = "所在地行政区", name = "adName") private String adName; // 地址 @ApiModelProperty(value = "地址", name = "loc") private String loc; // 督查对象备注 @ApiModelProperty(value = "督查对象备注", name = "note") private String note; // 经度 @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; // 创建时间 @ApiModelProperty(value = "创建时间", name = "intm") private Date intm; // 修改时间 @ApiModelProperty(value = "修改时间", name = "uptm") private Date uptm; // 数据状态 @ApiModelProperty(value = "数据状态", name = "dataStat") private String dataStat; // 督查对象标段 @ApiModelProperty(value = "督查对象标段", name = "sectName") private String sectName; public BisInspBaseNew() { } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getObjType() { return objType; } public void setObjType(String objType) { this.objType = objType; } public String getCode() { return code; } public void setCode(String code) { this.code = code; } public String getNm() { return nm; } public void setNm(String nm) { this.nm = nm; } 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 getLoc() { return loc; } public void setLoc(String loc) { this.loc = loc; } public String getNote() { return note; } public void setNote(String note) { this.note = note; } 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 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; } public String getSectName() { return sectName; } public void setSectName(String sectName) { this.sectName = sectName; } @Override public String toString() { return "BisInspBaseNew [" + "id=" + id + ", objType=" + objType + ", code=" + code + ", nm=" + nm + ", adCode=" + adCode + ", adName=" + adName + ", loc=" + loc + ", note=" + note + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + ", sectName=" + sectName + "]"; } }