| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiParam;
- import java.util.Date;
- import java.io.Serializable;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * BisInspGrowOutParam
- *
- * @author lhc
- * @date 2021-1-22
- */
- public class BisInspGrowOutParam extends PageParam implements Serializable {
- // 主键ID
- @ApiParam(name = "主键ID")
- @ApiModelProperty(value = "主键ID", name = "id")
- private String id;
- // 登记表ID
- @ApiParam(name = "登记表ID")
- @ApiModelProperty(value = "登记表ID", name = "rgstrId")
- private String rgstrId;
- // 坐标是否一致
- @ApiParam(name = "坐标是否一致")
- @ApiModelProperty(value = "坐标是否一致", name = "isCoorIden")
- private String isCoorIden;
- // 是否安装电量控制设备
- @ApiParam(name = "是否安装电量控制设备")
- @ApiModelProperty(value = "是否安装电量控制设备", name = "isElecEqui")
- private String isElecEqui;
- // 是否安装流量计
- @ApiParam(name = "是否安装流量计")
- @ApiModelProperty(value = "是否安装流量计", name = "isWaterEqui")
- private String isWaterEqui;
- // 取水量、电量比是否正确
- @ApiParam(name = "取水量、电量比是否正确")
- @ApiModelProperty(value = "取水量、电量比是否正确", name = "isWaterElec")
- private String isWaterElec;
- // 实际取水量是否超出取水指标
- @ApiParam(name = "实际取水量是否超出取水指标")
- @ApiModelProperty(value = "实际取水量是否超出取水指标", name = "isWaterIndex")
- private String isWaterIndex;
- // 实际用电量是否超出指标
- @ApiParam(name = "实际用电量是否超出指标")
- @ApiModelProperty(value = "实际用电量是否超出指标", name = "isElecIndex")
- private String isElecIndex;
- // 是否建立“一井一档”
- @ApiParam(name = "是否建立“一井一档”")
- @ApiModelProperty(value = "是否建立“一井一档”", name = "isRecordEst")
- private String isRecordEst;
- // 是否有水资源论证报告
- @ApiParam(name = "是否有水资源论证报告")
- @ApiModelProperty(value = "是否有水资源论证报告", name = "isReportHaving")
- private String isReportHaving;
- // 是否有其它问题
- @ApiParam(name = "是否有其它问题")
- @ApiModelProperty(value = "是否有其它问题", name = "isProblemOther")
- private String isProblemOther;
- // 填报状态
- @ApiParam(name = "填报状态")
- @ApiModelProperty(value = "填报状态", name = "state")
- private String state;
- // 记录人员ID
- @ApiParam(name = "记录人员ID")
- @ApiModelProperty(value = "记录人员ID", name = "persId")
- private String persId;
- // 创建时间
- @ApiParam(name = "创建时间")
- @ApiModelProperty(value = "创建时间", name = "intm")
- private Date intm;
- // 修改时间
- @ApiParam(name = "修改时间")
- @ApiModelProperty(value = "修改时间", name = "uptm")
- private Date uptm;
- // 数据状态
- @ApiParam(name = "数据状态")
- @ApiModelProperty(value = "数据状态", name = "dataStat")
- private String dataStat;
- public BisInspGrowOutParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getRgstrId() {
- return rgstrId;
- }
- public void setRgstrId(String rgstrId) {
- this.rgstrId = rgstrId;
- }
- public String getIsCoorIden() {
- return isCoorIden;
- }
- public void setIsCoorIden(String isCoorIden) {
- this.isCoorIden = isCoorIden;
- }
- public String getIsElecEqui() {
- return isElecEqui;
- }
- public void setIsElecEqui(String isElecEqui) {
- this.isElecEqui = isElecEqui;
- }
- public String getIsWaterEqui() {
- return isWaterEqui;
- }
- public void setIsWaterEqui(String isWaterEqui) {
- this.isWaterEqui = isWaterEqui;
- }
- public String getIsWaterElec() {
- return isWaterElec;
- }
- public void setIsWaterElec(String isWaterElec) {
- this.isWaterElec = isWaterElec;
- }
- public String getIsWaterIndex() {
- return isWaterIndex;
- }
- public void setIsWaterIndex(String isWaterIndex) {
- this.isWaterIndex = isWaterIndex;
- }
- public String getIsElecIndex() {
- return isElecIndex;
- }
- public void setIsElecIndex(String isElecIndex) {
- this.isElecIndex = isElecIndex;
- }
- public String getIsRecordEst() {
- return isRecordEst;
- }
- public void setIsRecordEst(String isRecordEst) {
- this.isRecordEst = isRecordEst;
- }
- public String getIsReportHaving() {
- return isReportHaving;
- }
- public void setIsReportHaving(String isReportHaving) {
- this.isReportHaving = isReportHaving;
- }
- public String getIsProblemOther() {
- return isProblemOther;
- }
- public void setIsProblemOther(String isProblemOther) {
- this.isProblemOther = isProblemOther;
- }
- public String getState() {
- return state;
- }
- public void setState(String state) {
- this.state = state;
- }
- 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;
- }
- }
|