| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228 |
- 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:BisInspWrwsRgstrWtut
- *
- * @author lhc
- * @date 2020-9-23
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspWrwsRgstrWtut extends BaseBean implements Serializable {
- // 主键ID
- @ApiModelProperty(value = "主键ID", name = "id")
- private String id;
- // 督查登记ID
- @ApiModelProperty(value = "督查登记ID", name = "rgstrId")
- private String rgstrId;
- // (市)2019年度市级公报套表主要数据是否与县级区域用水台账一致。
- @ApiModelProperty(value = "(市)2019年度市级公报套表主要数据是否与县级区域用水台账一致。", name = "isBuldRptFit")
- private String isBuldRptFit;
- // (县)1、是否完成2019年区域用水统计台账编制。
- @ApiModelProperty(value = "(县)1、是否完成2019年区域用水统计台账编制。", name = "isCmpBook")
- private String isCmpBook;
- // (县)2、2019年区域用水台账主要数据是否与市级水资源公报套表一致。
- @ApiModelProperty(value = "(县)2、2019年区域用水台账主要数据是否与市级水资源公报套表一致。", name = "isEqualCity")
- private String isEqualCity;
- // (县)3、2019年辖区内取水许可管理对象(除水电、河道养殖)是否都纳入区域用水统计台账中。
- @ApiModelProperty(value = "(县)3、2019年辖区内取水许可管理对象(除水电、河道养殖)是否都纳入区域用水统计台账中。", name = "isAllIn")
- private String isAllIn;
- // (县)几个取水许可管理对象未纳入区域用水统计台账
- @ApiModelProperty(value = "(县)几个取水许可管理对象未纳入区域用水统计台账", name = "noInNum")
- private Long noInNum;
- // (县)未纳入区域用水统计台账备注
- @ApiModelProperty(value = "(县)未纳入区域用水统计台账备注", name = "noInNote")
- private String noInNote;
- // (县)4、2019年区域用水统计台账中取水许可管理对象的用水量是否与取用水户取水统计台账一致
- @ApiModelProperty(value = "(县)4、2019年区域用水统计台账中取水许可管理对象的用水量是否与取用水户取水统计台账一致", name = "isFitBook")
- private String isFitBook;
- // (县)几个不一致
- @ApiModelProperty(value = "(县)几个不一致", name = "noFitNum")
- private Long noFitNum;
- // (县)不一致备注
- @ApiModelProperty(value = "(县)不一致备注", name = "noFitNote")
- private String noFitNote;
- // 创建人
- @ApiModelProperty(value = "创建人", name = "persId")
- private String persId;
- // 创建时间
- @ApiModelProperty(value = "创建时间", name = "intm")
- private Date intm;
- // 修改时间
- @ApiModelProperty(value = "修改时间", name = "uptm")
- private Date uptm;
- // 督查状态(0:未督查;1:督查中;2:已督查)
- @ApiModelProperty(value = "督查状态(0:未督查;1:督查中;2:已督查)", name = "state")
- private String state;
- // 数据状态(0:正常;9:删除)
- @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
- private String dataStat;
- //(新增)5、2020年度河道外的取水许可管理对象应纳入用水统计调查名录的是否都纳入。
- @ApiModelProperty(value = "2020年度河道外的取水许可管理对象应纳入用水统计调查名录的是否都纳入。", name = "isInDir")
- private String isInDir;
- //(新增)6、已纳入用水统计调查名录的取用水单位是否都已全国用水统计调查直报管理系统中注册数据填报账号。
- @ApiModelProperty(value = "已纳入用水统计调查名录的取用水单位是否都已全国用水统计调查直报管理系统中注册数据填报账号。", name = "isAllRgstr")
- private String isAllRgstr;
- public BisInspWrwsRgstrWtut() {
- }
- public String getIsInDir() {
- return isInDir;
- }
- public void setIsInDir(String isInDir) {
- this.isInDir = isInDir;
- }
- public String getIsAllRgstr() {
- return isAllRgstr;
- }
- public void setIsAllRgstr(String isAllRgstr) {
- this.isAllRgstr = isAllRgstr;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- @Override
- public String getRgstrId() {
- return rgstrId;
- }
- @Override
- public void setRgstrId(String rgstrId) {
- this.rgstrId = rgstrId;
- }
- public String getIsBuldRptFit() {
- return isBuldRptFit;
- }
- public void setIsBuldRptFit(String isBuldRptFit) {
- this.isBuldRptFit = isBuldRptFit;
- }
- public String getIsCmpBook() {
- return isCmpBook;
- }
- public void setIsCmpBook(String isCmpBook) {
- this.isCmpBook = isCmpBook;
- }
- public String getIsEqualCity() {
- return isEqualCity;
- }
- public void setIsEqualCity(String isEqualCity) {
- this.isEqualCity = isEqualCity;
- }
- public String getIsAllIn() {
- return isAllIn;
- }
- public void setIsAllIn(String isAllIn) {
- this.isAllIn = isAllIn;
- }
- public Long getNoInNum() {
- return noInNum;
- }
- public void setNoInNum(Long noInNum) {
- this.noInNum = noInNum;
- }
- public String getNoInNote() {
- return noInNote;
- }
- public void setNoInNote(String noInNote) {
- this.noInNote = noInNote;
- }
- public String getIsFitBook() {
- return isFitBook;
- }
- public void setIsFitBook(String isFitBook) {
- this.isFitBook = isFitBook;
- }
- public Long getNoFitNum() {
- return noFitNum;
- }
- public void setNoFitNum(Long noFitNum) {
- this.noFitNum = noFitNum;
- }
- public String getNoFitNote() {
- return noFitNote;
- }
- public void setNoFitNote(String noFitNote) {
- this.noFitNote = noFitNote;
- }
- 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 getState() {
- return state;
- }
- public void setState(String state) {
- this.state = state;
- }
- public String getDataStat() {
- return dataStat;
- }
- public void setDataStat(String dataStat) {
- this.dataStat = dataStat;
- }
- @Override
- public String toString() {
- return "BisInspWrwsRgstrWtut [" + "id=" + id + ", rgstrId=" + rgstrId + ", isBuldRptFit=" + isBuldRptFit + ", isCmpBook=" + isCmpBook + ", isEqualCity=" + isEqualCity + ", isAllIn=" + isAllIn + ", noInNum=" + noInNum + ", noInNote=" + noInNote + ", isFitBook=" + isFitBook + ", noFitNum=" + noFitNum + ", noFitNote=" + noFitNote + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", state=" + state + ", dataStat=" + dataStat + "]";
- }
- }
|