| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- 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;
- /**
- * BisInspGrowCloParam
- *
- * @author lhc
- * @date 2021-1-22
- */
- public class BisInspGrowCloParam 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 = "isDrawPump")
- private String isDrawPump;
- // 是否拆除启动柜
- @ApiParam(name = "是否拆除启动柜")
- @ApiModelProperty(value = "是否拆除启动柜", name = "isDisCab")
- private String isDisCab;
- // 是否拆除配电箱
- @ApiParam(name = "是否拆除配电箱")
- @ApiModelProperty(value = "是否拆除配电箱", name = "isDisBox")
- private String isDisBox;
- // 是否封存井口
- @ApiParam(name = "是否封存井口")
- @ApiModelProperty(value = "是否封存井口", name = "isSealWell")
- private String isSealWell;
- // 坐标是否一致
- @ApiParam(name = "坐标是否一致")
- @ApiModelProperty(value = "坐标是否一致", name = "isCoorIden")
- private String isCoorIden;
- // 是否设立标识牌
- @ApiParam(name = "是否设立标识牌")
- @ApiModelProperty(value = "是否设立标识牌", name = "isEstabCard")
- private String isEstabCard;
- // 填报状态
- @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 BisInspGrowCloParam() {
- }
- 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 getIsDrawPump() {
- return isDrawPump;
- }
- public void setIsDrawPump(String isDrawPump) {
- this.isDrawPump = isDrawPump;
- }
- public String getIsDisCab() {
- return isDisCab;
- }
- public void setIsDisCab(String isDisCab) {
- this.isDisCab = isDisCab;
- }
- public String getIsDisBox() {
- return isDisBox;
- }
- public void setIsDisBox(String isDisBox) {
- this.isDisBox = isDisBox;
- }
- public String getIsSealWell() {
- return isSealWell;
- }
- public void setIsSealWell(String isSealWell) {
- this.isSealWell = isSealWell;
- }
- public String getIsCoorIden() {
- return isCoorIden;
- }
- public void setIsCoorIden(String isCoorIden) {
- this.isCoorIden = isCoorIden;
- }
- public String getIsEstabCard() {
- return isEstabCard;
- }
- public void setIsEstabCard(String isEstabCard) {
- this.isEstabCard = isEstabCard;
- }
- 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;
- }
- }
|