| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285 |
- 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;
- /**
- * BisInspGrowRgstrParam
- *
- * @author lhc
- * @date 2021-1-22
- */
- public class BisInspGrowRgstrParam extends PageParam implements Serializable {
- // 主键ID
- @ApiParam(name = "主键ID")
- @ApiModelProperty(value = "主键ID", name = "id")
- private String id;
- // 督查对象ID
- @ApiParam(name = "督查对象ID")
- @ApiModelProperty(value = "督查对象ID", name = "objId")
- private String objId;
- // 机井编码
- @ApiParam(name = "机井编码")
- @ApiModelProperty(value = "机井编码", name = "wellCode")
- private String wellCode;
- // 机井名称
- @ApiParam(name = "机井名称")
- @ApiModelProperty(value = "机井名称", name = "wellName")
- private String wellName;
- // 行政区划编码
- @ApiParam(name = "行政区划编码")
- @ApiModelProperty(value = "行政区划编码", name = "adCode")
- private String adCode;
- // 行政区划名称
- @ApiParam(name = "行政区划名称")
- @ApiModelProperty(value = "行政区划名称", name = "adName")
- private String adName;
- // 机井类型
- @ApiParam(name = "机井类型")
- @ApiModelProperty(value = "机井类型", name = "wellType")
- private String wellType;
- // 取水许可证编号
- @ApiParam(name = "取水许可证编号")
- @ApiModelProperty(value = "取水许可证编号", name = "cardNum")
- private String cardNum;
- // 一井一档编号
- @ApiParam(name = "一井一档编号")
- @ApiModelProperty(value = "一井一档编号", name = "filesNum")
- private String filesNum;
- // 经度
- @ApiParam(name = "经度")
- @ApiModelProperty(value = "经度", name = "centerX")
- private Double centerX;
- // 纬度
- @ApiParam(name = "纬度")
- @ApiModelProperty(value = "纬度", name = "centerY")
- private Double centerY;
- // 高德经度
- @ApiParam(name = "高德经度")
- @ApiModelProperty(value = "高德经度", name = "gdX")
- private Double gdX;
- // 高德纬度
- @ApiParam(name = "高德纬度")
- @ApiModelProperty(value = "高德纬度", name = "gdY")
- private Double gdY;
- // 督查市域外保留井填报状态
- @ApiParam(name = "督查市域外保留井填报状态")
- @ApiModelProperty(value = "督查市域外保留井填报状态", name = "growOutState")
- private String growOutState;
- // 督查市域内保留井填报状态
- @ApiParam(name = "督查市域内保留井填报状态")
- @ApiModelProperty(value = "督查市域内保留井填报状态", name = "growWithState")
- private String growWithState;
- // 督查抗旱井填报状态
- @ApiParam(name = "督查抗旱井填报状态")
- @ApiModelProperty(value = "督查抗旱井填报状态", name = "growDrouState")
- private String growDrouState;
- // 督查关闭井填报状态
- @ApiParam(name = "督查关闭井填报状态")
- @ApiModelProperty(value = "督查关闭井填报状态", name = "growCloState")
- private String growCloState;
- // 督查状态
- @ApiParam(name = "督查状态")
- @ApiModelProperty(value = "督查状态", name = "state")
- private String state;
- // 创建人
- @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;
- // 督查组ID
- @ApiParam(name = "督查组ID")
- @ApiModelProperty(value = "督查组ID", name = "groupId")
- private String groupId;
- // 数据状态
- @ApiParam(name = "数据状态")
- @ApiModelProperty(value = "数据状态", name = "dataStat")
- private String dataStat;
- //督查计划ID
- @ApiParam(name = "督查计划ID")
- @ApiModelProperty(value = "督查计划ID", name = "plnaId")
- private String plnaId;
- @ApiParam(name = "时间条件-开始时间")
- @ApiModelProperty(value = "时间条件-开始时间", name = "sttm")
- private String sttm;
- @ApiParam(name = "时间条件-结束时间")
- @ApiModelProperty(value = "时间条件-结束时间", name = "entm")
- private String entm;
- public String getSttm() {
- return sttm;
- }
- public void setSttm(String sttm) {
- this.sttm = sttm;
- }
- public String getEntm() {
- return entm;
- }
- public void setEntm(String entm) {
- this.entm = entm;
- }
- public String getPlnaId() {
- return plnaId;
- }
- public void setPlnaId(String plnaId) {
- this.plnaId = plnaId;
- }
- public BisInspGrowRgstrParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getObjId() {
- return objId;
- }
- public void setObjId(String objId) {
- this.objId = objId;
- }
- public String getWellCode() {
- return wellCode;
- }
- public void setWellCode(String wellCode) {
- this.wellCode = wellCode;
- }
- public String getWellName() {
- return wellName;
- }
- public void setWellName(String wellName) {
- this.wellName = wellName;
- }
- public String getAdCode() {
- return adCode;
- }
- public void setAdCode(String adCode) {
- this.adCode = adCode;
- }
- public String getAdName() {
- return adName;
- }
- public void setAdName(String adName) {
- this.adName = adName;
- }
- public String getWellType() {
- return wellType;
- }
- public void setWellType(String wellType) {
- this.wellType = wellType;
- }
- public String getCardNum() {
- return cardNum;
- }
- public void setCardNum(String cardNum) {
- this.cardNum = cardNum;
- }
- public String getFilesNum() {
- return filesNum;
- }
- public void setFilesNum(String filesNum) {
- this.filesNum = filesNum;
- }
- public Double getCenterX() {
- return centerX;
- }
- public void setCenterX(Double centerX) {
- this.centerX = centerX;
- }
- public Double getCenterY() {
- return centerY;
- }
- public void setCenterY(Double centerY) {
- this.centerY = centerY;
- }
- public Double getGdX() {
- return gdX;
- }
- public void setGdX(Double gdX) {
- this.gdX = gdX;
- }
- public Double getGdY() {
- return gdY;
- }
- public void setGdY(Double gdY) {
- this.gdY = gdY;
- }
- public String getGrowOutState() {
- return growOutState;
- }
- public void setGrowOutState(String growOutState) {
- this.growOutState = growOutState;
- }
- public String getGrowWithState() {
- return growWithState;
- }
- public void setGrowWithState(String growWithState) {
- this.growWithState = growWithState;
- }
- public String getGrowDrouState() {
- return growDrouState;
- }
- public void setGrowDrouState(String growDrouState) {
- this.growDrouState = growDrouState;
- }
- public String getGrowCloState() {
- return growCloState;
- }
- public void setGrowCloState(String growCloState) {
- this.growCloState = growCloState;
- }
- 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 getGroupId() {
- return groupId;
- }
- public void setGroupId(String groupId) {
- this.groupId = groupId;
- }
- public String getDataStat() {
- return dataStat;
- }
- public void setDataStat(String dataStat) {
- this.dataStat = dataStat;
- }
- }
|