| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- 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 + "]";
- }
- }
|