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:BisInspCdepRgstr * * @author lhc * @date 2020-11-19 */ @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"}) public class BisInspCdepRgstr 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 = "bDepCode") private String bDepCode; // 单位名称 @ApiModelProperty(value = "单位名称", name = "bChkUnit") private String bChkUnit; // 行政区划编码 @ApiModelProperty(value = "行政区划编码", name = "adCode") private String adCode; // 行政区划名称 @ApiModelProperty(value = "行政区划名称", name = "adName") private String adName; // 详细地址 @ApiModelProperty(value = "详细地址", name = "loc") private String loc; // 被检查单位联系人 @ApiModelProperty(value = "被检查单位联系人", name = "contact") private String contact; // 被检查单位联系人电话 @ApiModelProperty(value = "被检查单位联系人电话", name = "contactTel") private String contactTel; // 被检查单位负责人 @ApiModelProperty(value = "被检查单位负责人", name = "principal") private String principal; // 经度 @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 = "quaState") private String quaState; // 行为检测督查填报 @ApiModelProperty(value = "行为检测督查填报", name = "behState") private String behState; // 检测能力——岩土工程督查填报 @ApiModelProperty(value = "检测能力——岩土工程督查填报", name = "capState") private String capState; // 检测能力——混凝土工程督查填报 @ApiModelProperty(value = "检测能力——混凝土工程督查填报", name = "conState") private String conState; // 督查状态 @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; public BisInspCdepRgstr() { } public String getId() { return id; } public void setId(String id) { this.id = id; } @Override public String getObjId() { return objId; } @Override public void setObjId(String objId) { this.objId = objId; } public String getBDepCode() { return bDepCode; } public void setBDepCode(String bDepCode) { this.bDepCode = bDepCode; } public String getBChkUnit() { return bChkUnit; } public void setBChkUnit(String bChkUnit) { this.bChkUnit = bChkUnit; } 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 getContact() { return contact; } public void setContact(String contact) { this.contact = contact; } public String getContactTel() { return contactTel; } public void setContactTel(String contactTel) { this.contactTel = contactTel; } public String getPrincipal() { return principal; } public void setPrincipal(String principal) { this.principal = principal; } 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 getQuaState() { return quaState; } public void setQuaState(String quaState) { this.quaState = quaState; } public String getBehState() { return behState; } public void setBehState(String behState) { this.behState = behState; } public String getCapState() { return capState; } public void setCapState(String capState) { this.capState = capState; } public String getConState() { return conState; } public void setConState(String conState) { this.conState = conState; } 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 "BisInspCdepRgstr [" + "id=" + id + ", objId=" + objId + ", bDepCode=" + bDepCode + ", bChkUnit=" + bChkUnit + ", adCode=" + adCode + ", adName=" + adName + ", loc=" + loc + ", contact=" + contact + ", contactTel=" + contactTel + ", principal=" + principal + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", quaState=" + quaState + ", behState=" + behState + ", capState=" + capState + ", conState=" + conState + ", state=" + state + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", groupId=" + groupId + ", dataStat=" + dataStat + "]"; } }