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:BisInspVillgdWtspSrc * * @author lhc * @date 2021-4-23 */ @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"}) public class BisInspVillgdWtspSrc extends BaseBean implements Serializable { // 主键ID @ApiModelProperty(value = "主键ID", name = "id") private String id; // 供水水工程ID @ApiModelProperty(value = "供水水工程ID", name = "wtspId") private String wtspId; // 登记表ID @ApiModelProperty(value = "登记表ID", name = "rgstrId") private String rgstrId; // 供水工程饮用水水源是否划定水源保护区/保护范围 @ApiModelProperty(value = "供水工程饮用水水源是否划定水源保护区/保护范围", name = "isSureRange") private String isSureRange; // 供水工程水源保护区/保护范围是否设立标志牌和保护措施 @ApiModelProperty(value = "供水工程水源保护区/保护范围是否设立标志牌和保护措施", name = "isSetLog") private String isSetLog; // 供水工程水源保护区/保护范围内是否有排污口,或向水体排放、倾倒有毒有害工业废渣、垃圾或其他废弃物 @ApiModelProperty(value = "供水工程水源保护区/保护范围内是否有排污口,或向水体排放、倾倒有毒有害工业废渣、垃圾或其他废弃物", name = "isSetOut") private String isSetOut; // 管理单位是否定期开展水源巡查和记录 @ApiModelProperty(value = "管理单位是否定期开展水源巡查和记录", name = "isPatrol") private String isPatrol; // 管理单位是否及时处理巡查发现问题 @ApiModelProperty(value = "管理单位是否及时处理巡查发现问题", name = "isFindPblm") private String isFindPblm; // 记录人员ID @ApiModelProperty(value = "记录人员ID", name = "persId") private String persId; // 创建时间 @ApiModelProperty(value = "创建时间", name = "intm") private Date intm; // 最后修改时间 @ApiModelProperty(value = "最后修改时间", name = "uptm") private Date uptm; // 备注 @ApiModelProperty(value = "备注", name = "note") private String note; // 数据状态(0:正常;9:删除) @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat") private String dataStat; @ApiModelProperty(value = "状态", name = "state") private String state; public BisInspVillgdWtspSrc() { } public String getState() { return state; } public void setState(String state) { this.state = state; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getWtspId() { return wtspId; } public void setWtspId(String wtspId) { this.wtspId = wtspId; } public String getRgstrId() { return rgstrId; } public void setRgstrId(String rgstrId) { this.rgstrId = rgstrId; } public String getIsSureRange() { return isSureRange; } public void setIsSureRange(String isSureRange) { this.isSureRange = isSureRange; } public String getIsSetLog() { return isSetLog; } public void setIsSetLog(String isSetLog) { this.isSetLog = isSetLog; } public String getIsSetOut() { return isSetOut; } public void setIsSetOut(String isSetOut) { this.isSetOut = isSetOut; } public String getIsPatrol() { return isPatrol; } public void setIsPatrol(String isPatrol) { this.isPatrol = isPatrol; } public String getIsFindPblm() { return isFindPblm; } public void setIsFindPblm(String isFindPblm) { this.isFindPblm = isFindPblm; } 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 getNote() { return note; } public void setNote(String note) { this.note = note; } public String getDataStat() { return dataStat; } public void setDataStat(String dataStat) { this.dataStat = dataStat; } @Override public String toString() { return "BisInspVillgdWtspSrc [" + "id=" + id + ", wtspId=" + wtspId + ", rgstrId=" + rgstrId + ", isSureRange=" + isSureRange + ", isSetLog=" + isSetLog + ", isSetOut=" + isSetOut + ", isPatrol=" + isPatrol + ", isFindPblm=" + isFindPblm + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + ", dataStat=" + dataStat + "]"; } }