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:BisInspRvgmRgstr * * @author lhc * @date 2021-4-1 */ @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"}) public class BisInspRvgmRgstr 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 = "depName") private String depName; // 所在地行政区编码(到乡镇) @ApiModelProperty(value = "所在地行政区编码(到乡镇)", name = "adCode") private String adCode; // 所在地行政区(到乡镇) @ApiModelProperty(value = "所在地行政区(到乡镇)", name = "adName") private String adName; // 单位地址 @ApiModelProperty(value = "单位地址", name = "loc") private String loc; // 单位负责人 @ApiModelProperty(value = "单位负责人", name = "utLead") private String utLead; // 负责人电话 @ApiModelProperty(value = "负责人电话", name = "principalTel") private String principalTel; // 联系人 @ApiModelProperty(value = "联系人", name = "depPers") private String depPers; // 联系电话 @ApiModelProperty(value = "联系电话", name = "depPersTel") private String depPersTel; // 备注 @ApiModelProperty(value = "备注", name = "note") private String note; // 督查状态(0:未督查;1:督查中;2:已督查) @ApiModelProperty(value = "督查状态(0:未督查;1:督查中;2:已督查)", name = "state") private String state; // 河湖长制度建设状态 @ApiModelProperty(value = "河湖长制度建设状态", name = "sysStat") private String sysStat; // 河湖长制度行政许可管理检查 @ApiModelProperty(value = "河湖长制度行政许可管理检查", name = "admStat") private String admStat; // 河湖长制度-查基础工作检查状态 @ApiModelProperty(value = "河湖长制度-查基础工作检查状态", name = "bswkStat") private String bswkStat; // 河湖长制度-人员经费保障检查 @ApiModelProperty(value = "河湖长制度-人员经费保障检查", name = "costStat") private String costStat; // 河湖长制度-其他检查 @ApiModelProperty(value = "河湖长制度-其他检查", name = "othrStat") private String othrStat; // 经度 @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 = "persId") private String persId; // 创建时间 @ApiModelProperty(value = "创建时间", name = "intm") private Date intm; // 修改时间 @ApiModelProperty(value = "修改时间", name = "uptm") private Date uptm; @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat") private String dataStat; @ApiModelProperty(value = "行政区划", name = "adFullName") private String adFullName; public BisInspRvgmRgstr() { } public String getAdFullName() { return adFullName; } public void setAdFullName(String adFullName) { this.adFullName = adFullName; } 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 getDepName() { return depName; } public void setDepName(String depName) { this.depName = depName; } 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 getUtLead() { return utLead; } public void setUtLead(String utLead) { this.utLead = utLead; } public String getPrincipalTel() { return principalTel; } public void setPrincipalTel(String principalTel) { this.principalTel = principalTel; } public String getDepPers() { return depPers; } public void setDepPers(String depPers) { this.depPers = depPers; } public String getDepPersTel() { return depPersTel; } public void setDepPersTel(String depPersTel) { this.depPersTel = depPersTel; } public String getNote() { return note; } public void setNote(String note) { this.note = note; } public String getState() { return state; } public void setState(String state) { this.state = state; } public String getSysStat() { return sysStat; } public void setSysStat(String sysStat) { this.sysStat = sysStat; } public String getAdmStat() { return admStat; } public void setAdmStat(String admStat) { this.admStat = admStat; } public String getBswkStat() { return bswkStat; } public void setBswkStat(String bswkStat) { this.bswkStat = bswkStat; } public String getCostStat() { return costStat; } public void setCostStat(String costStat) { this.costStat = costStat; } public String getOthrStat() { return othrStat; } public void setOthrStat(String othrStat) { this.othrStat = othrStat; } 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 getDataStat() { return dataStat; } public void setDataStat(String dataStat) { this.dataStat = dataStat; } @Override public String toString() { return "BisInspRvgmRgstr [" + "id=" + id + ", objId=" + objId + ", depName=" + depName + ", adCode=" + adCode + ", adName=" + adName + ", loc=" + loc + ", utLead=" + utLead + ", principalTel=" + principalTel + ", depPers=" + depPers + ", depPersTel=" + depPersTel + ", note=" + note + ", state=" + state + ", sysStat=" + sysStat + ", admStat=" + admStat + ", bswkStat=" + bswkStat + ", costStat=" + costStat + ", othrStat=" + othrStat + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]"; } }