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; /** * @author lhc * @date 2019/11/18 13:44 */ @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"}) public class BisInspOffLine extends BaseBean implements Serializable { // ID @ApiModelProperty(value = "ID", name = "id") private String id; // 对象ID @ApiModelProperty(value = "对象ID", name = "code") private String code; // 督查类型 '1','小型水库', '2','人饮工程', '3','水毁工程', '4','工程建设', '5','地下水', '7','运行管理', '6','水闸', '9','特定飞检', '10','其他填报', '11','淤地坝', '12','取水口','13','重要水源地', '14','分水及管控', '15','节水管理与评价', '16','用水单位抽查' '22','大中型水库' @ApiModelProperty(value = "督查类型 '1','小型水库', '2','人饮工程', '3','水毁工程', '4','工程建设', '5','地下水', '7','运行管理', '6','水闸', '9','特定飞检', '10','其他填报', '11','淤地坝', '12','取水口','13','重要水源地', '14','分水及管控', '15','节水管理与评价', '16','用水单位抽查', '22','大中型水库'", name = "ptype") private String ptype; // 对象名称 @ApiModelProperty(value = "对象名称", name = "name") private String name; // 农饮类型,1 人饮村 2 水源地 3 饮水工程 4 用水户 5 责任落实 6水利工程运行情况 @ApiModelProperty(value = "农饮类型,1 人饮村 2 水源地 3 饮水工程 4 用水户 5 责任落实 6水利工程运行情况", name = "villType") private String villType; // 组ID @ApiModelProperty(value = "组ID", name = "groupId") private String groupId; // 所属行政区 @ApiModelProperty(value = "所属行政区", name = "addvcd") private String addvcd; // 创建人 @ApiModelProperty(value = "创建人", name = "persId") private String persId; // 插入时间 @ApiModelProperty(value = "插入时间", name = "intm") private Date intm; // 修改时间 @ApiModelProperty(value = "修改时间", name = "uptm") private Date uptm; // 数据状态(0:正常;9:删除) @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat") private String dataStat; public BisInspOffLine() { } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getCode() { return code; } public void setCode(String code) { this.code = code; } public String getPtype() { return ptype; } public void setPtype(String ptype) { this.ptype = ptype; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getVillType() { return villType; } public void setVillType(String villType) { this.villType = villType; } @Override public String getGroupId() { return groupId; } @Override public void setGroupId(String groupId) { this.groupId = groupId; } public String getAddvcd() { return addvcd; } public void setAddvcd(String addvcd) { this.addvcd = addvcd; } 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 "BisInspOffLine [" + "id=" + id + ", code=" + code + ", ptype=" + ptype + ", name=" + name + ", villType=" + villType + ", groupId=" + groupId + ", addvcd=" + addvcd + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]"; } }