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:BisInspWtgtRgstr * * @author lhc * @date 2020-9-18 */ @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"}) public class BisInspWtgtRgstr 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 = "wintCode") private String wintCode; // 联系人 @ApiModelProperty(value = "联系人", name = "depPers") private String depPers; // 联系电话 @ApiModelProperty(value = "联系电话", name = "depPersTel") private String depPersTel; // 单位地址 @ApiModelProperty(value = "单位地址", name = "loc") private String loc; // 经度 @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 = "payState") private String payState; // 计划用水和定额管理状态 @ApiModelProperty(value = "计划用水和定额管理状态", name = "planState") private String planState; // 状态 @ApiModelProperty(value = "状态", name = "state") private String state; // 创建人 @ApiModelProperty(value = "创建人", name = "persId") private String persId; // 创建时间 @ApiModelProperty(value = "创建时间", name = "intm") private Date intm; // 修改时间 @ApiModelProperty(value = "修改时间", name = "uptm") private Date uptm; // 督查组ID @ApiModelProperty(value = "督查组ID", name = "groupId") private String groupId; // 数据状态(0:正常;9:删除) @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat") private String dataStat; @ApiModelProperty(value = "负责人", name = "utLead") private String utLead; @ApiModelProperty(value = "负责人电话", position = 19) private String principalTel; @ApiModelProperty(value = "修改时间", position = 20) private String note; //组名称 private String groupName; public BisInspWtgtRgstr() { } 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 getNote() { return note; } public void setNote(String note) { this.note = note; } public String getGroupName() { return groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getId() { return id; } public void setId(String id) { this.id = id; } 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 getWintCode() { return wintCode; } public void setWintCode(String wintCode) { this.wintCode = wintCode; } 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 getLoc() { return loc; } public void setLoc(String loc) { this.loc = loc; } 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 getPayState() { return payState; } public void setPayState(String payState) { this.payState = payState; } public String getPlanState() { return planState; } public void setPlanState(String planState) { this.planState = planState; } public String getState() { return state; } public void setState(String state) { this.state = state; } 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; } @Override public String getGroupId() { return groupId; } @Override public void setGroupId(String groupId) { this.groupId = groupId; } public String getDataStat() { return dataStat; } public void setDataStat(String dataStat) { this.dataStat = dataStat; } @Override public String toString() { return "BisInspWtgtRgstr [" + "id=" + id + ", objId=" + objId + ", depName=" + depName + ", adCode=" + adCode + ", adName=" + adName + ", wintCode=" + wintCode + ", depPers=" + depPers + ", depPersTel=" + depPersTel + ", loc=" + loc + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", payState=" + payState + ", planState=" + planState + ", state=" + state + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", groupId=" + groupId + ", dataStat=" + dataStat + "]"; } }