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:BisInspDstfldqh * * @author lhc * @date 2021-6-10 */ @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"}) public class BisInspDstfldqh extends BaseBean implements Serializable { // ID @ApiModelProperty(value="ID",name="id") private String id; // 督查对象ID @ApiModelProperty(value="督查对象ID",name="objId") private String objId; // 项目名称 @ApiModelProperty(value="项目名称",name="nm") private String nm; // 工程类型 @ApiModelProperty(value="工程类型",name="prjtType") private String prjtType; // 所在地行政区编码 @ApiModelProperty(value="所在地行政区编码",name="adCode") private String adCode; // 所在地行政区 @ApiModelProperty(value="所在地行政区",name="adName") private String adName; // 地址 @ApiModelProperty(value="地址",name="loc") private String loc; // 主管单位 @ApiModelProperty(value="主管单位",name="unit") private String unit; // 修复内容 @ApiModelProperty(value="修复内容",name="content") private String content; // 水毁情况 @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; // 督查状态(0:未督查;1:督查中;2:已督查) @ApiModelProperty(value="督查状态(0:未督查;1:督查中;2:已督查)",name="state") private String state; // 督查情况督查状态 @ApiModelProperty(value="督查情况督查状态",name="noteState") private String noteState; // 记录人员ID @ApiModelProperty(value="记录人员ID",name="persId") private String persId; // 创建时间 @ApiModelProperty(value="创建时间",name="intm") private Date intm; // 修改时间 @ApiModelProperty(value="修改时间",name="uptm") private Date uptm; // 数据状态(0:正常;9:删除) @ApiModelProperty(value="数据状态(0:正常;9:删除)",name="dataStat") private String dataStat; public BisInspDstfldqh() { } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getObjId() { return objId; } public void setObjId(String objId) { this.objId = objId; } public String getNm() { return nm; } public void setNm(String nm) { this.nm = nm; } public String getPrjtType() { return prjtType; } public void setPrjtType(String prjtType) { this.prjtType = prjtType; } 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 getUnit() { return unit; } public void setUnit(String unit) { this.unit = unit; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } 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 String getState() { return state; } public void setState(String state) { this.state = state; } public String getNoteState() { return noteState; } public void setNoteState(String noteState) { this.noteState = noteState; } 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 getDataStat() { return dataStat; } public void setDataStat(String dataStat) { this.dataStat = dataStat; } @Override public String toString() { return "BisInspDstfldqh [" + "id=" + id + ", objId=" + objId + ", nm=" + nm + ", prjtType=" + prjtType + ", adCode=" + adCode + ", adName=" + adName + ", loc=" + loc + ", unit=" + unit + ", content=" + content + ", note=" + note + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", state=" + state + ", noteState=" + noteState + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]"; } }