| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- 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:BisInspVillgdWtspOthr
- *
- * @author lhc
- * @date 2021-4-23
- */
- @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
- public class BisInspVillgdWtspOthr 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="isHealth")
- private String isHealth;
- // 其他问题
- @ApiModelProperty(value="其他问题",name="other")
- private String other;
- // 记录人员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 BisInspVillgdWtspOthr() {
- }
- 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 getIsHealth() {
- return isHealth;
- }
- public void setIsHealth(String isHealth) {
- this.isHealth = isHealth;
- }
- public String getOther() {
- return other;
- }
- public void setOther(String other) {
- this.other = other;
- }
- 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 "BisInspVillgdWtspOthr [" + "id=" + id + ", wtspId=" + wtspId + ", rgstrId=" + rgstrId + ", isHealth=" + isHealth + ", other=" + other + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + ", dataStat=" + dataStat + "]";
- }
- }
|