| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- import io.swagger.annotations.ApiParam;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * @author lhc
- * @date 2019/11/18 13:45
- */
- public class BisInspOffLineParam extends PageParam implements Serializable {
- // ID
- @ApiParam(name = "ID")
- @ApiModelProperty(value = "ID", name = "id")
- private String id;
- // 对象ID
- @ApiParam(name = "对象ID")
- @ApiModelProperty(value = "对象ID", name = "code")
- private String code;
- // 督查类型 '1','小型水库', '2','人饮工程', '3','水毁工程', '4','工程建设', '5','地下水', '7','运行管理', '6','水闸', '9','特定飞检', '10','其他填报', '11','淤地坝', '12','取水口','13','重要水源地', '14','分水及管控', '15','节水管理与评价', '16','用水单位抽查'
- @ApiParam(name = "督查类型 '1','小型水库', '2','人饮工程', '3','水毁工程', '4','工程建设', '5','地下水', '7','运行管理', '6','水闸', '9','特定飞检', '10','其他填报', '11','淤地坝', '12','取水口','13','重要水源地', '14','分水及管控', '15','节水管理与评价', '16','用水单位抽查'")
- @ApiModelProperty(value = "督查类型 '1','小型水库', '2','人饮工程', '3','水毁工程', '4','工程建设', '5','地下水', '7','运行管理', '6','水闸', '9','特定飞检', '10','其他填报', '11','淤地坝', '12','取水口','13','重要水源地', '14','分水及管控', '15','节水管理与评价', '16','用水单位抽查'", name = "ptype")
- private String ptype;
- // 对象名称
- @ApiParam(name = "对象名称")
- @ApiModelProperty(value = "对象名称", name = "name")
- private String name;
- // 农饮类型,1 人饮村 2 水源地 3 饮水工程 4 用水户 5 责任落实 6水利工程运行情况
- @ApiParam(name = "农饮类型,1 人饮村 2 水源地 3 饮水工程 4 用水户 5 责任落实 6水利工程运行情况")
- @ApiModelProperty(value = "农饮类型,1 人饮村 2 水源地 3 饮水工程 4 用水户 5 责任落实 6水利工程运行情况", name = "villType")
- private String villType;
- // 组ID
- @ApiParam(name = "组ID")
- @ApiModelProperty(value = "组ID", name = "groupId")
- private String groupId;
- // 所属行政区
- @ApiParam(name = "所属行政区")
- @ApiModelProperty(value = "所属行政区", name = "addvcd")
- private String addvcd;
- // 创建人
- @ApiParam(name = "创建人")
- @ApiModelProperty(value = "创建人", name = "persId")
- private String persId;
- // 插入时间
- @ApiParam(name = "插入时间")
- @ApiModelProperty(value = "插入时间", name = "intm")
- private Date intm;
- // 修改时间
- @ApiParam(name = "修改时间")
- @ApiModelProperty(value = "修改时间", name = "uptm")
- private Date uptm;
- // 数据状态(0:正常;9:删除)
- @ApiParam(name = "数据状态(0:正常;9:删除)")
- @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
- private String dataStat;
- public BisInspOffLineParam() {
- }
- 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;
- }
- public String getGroupId() {
- return groupId;
- }
- 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;
- }
- }
|