| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- import io.swagger.annotations.ApiParam;
- /**
- * Created by 61618 on 2019/4/15.
- */
- public class EmptprjPadMapInfoParam extends PageParam {
- @ApiModelProperty(value = "人员id,必填", notes = "人员id", required = true)
- private String persGuid;
- @ApiModelProperty(value = "1-18年/2-19年/3-复查/4-计划外/空-全部")
- private String status;//18年/19年/复查/计划外
- private String adCode;
- @ApiModelProperty(value = "项目类型 0:重大农业节水工程 1:重大引调水工程 2:重点水源工程 3:江河湖泊治理骨干工程 4:新建大型灌区工程 5:非水利部下达投资计划 6:全部由地方投资 7:其他项目15项", name = "ptype")
- private String ptype;
- @ApiModelProperty(value = "名称", name = "nm")
- private String nm;
- private Double maxLgtd;
- private Double minLgtd;
- private Double maxLttd;
- private Double minLttd;
- @ApiModelProperty(value = "最大高德经度")
- private Double maxcenterXGd;
- @ApiModelProperty(value = "最小高德经度")
- private Double mincenterXGd;
- @ApiModelProperty(value = "最大高德纬度")
- private Double maxcenterYGd;
- @ApiModelProperty(value = "最小高德纬度")
- private Double mincenterYGd;
- @ApiModelProperty(value = "督查状态-0:未督查1督查中;2:已督查", name = "rgstrStatus")
- private String rgstrStatus;//督查状态
- @ApiModelProperty(value = "重点工程类型-1:重点工程运行情况;2:重点工程建设情况", name = "engSta")
- private String engSta;
- public String getEngSta() {
- return engSta;
- }
- public void setEngSta(String engSta) {
- this.engSta = engSta;
- }
- public Double getMaxcenterXGd() {
- return maxcenterXGd;
- }
- public void setMaxcenterXGd(Double maxcenterXGd) {
- this.maxcenterXGd = maxcenterXGd;
- }
- public Double getMincenterXGd() {
- return mincenterXGd;
- }
- public void setMincenterXGd(Double mincenterXGd) {
- this.mincenterXGd = mincenterXGd;
- }
- public Double getMaxcenterYGd() {
- return maxcenterYGd;
- }
- public void setMaxcenterYGd(Double maxcenterYGd) {
- this.maxcenterYGd = maxcenterYGd;
- }
- public Double getMincenterYGd() {
- return mincenterYGd;
- }
- public void setMincenterYGd(Double mincenterYGd) {
- this.mincenterYGd = mincenterYGd;
- }
- public String getPersGuid() {
- return persGuid;
- }
- public void setPersGuid(String persGuid) {
- this.persGuid = persGuid;
- }
- public String getRgstrStatus() {
- return rgstrStatus;
- }
- public void setRgstrStatus(String rgstrStatus) {
- this.rgstrStatus = rgstrStatus;
- }
- public Double getMaxLgtd() {
- return maxLgtd;
- }
- public void setMaxLgtd(Double maxLgtd) {
- this.maxLgtd = maxLgtd;
- }
- public Double getMinLgtd() {
- return minLgtd;
- }
- public void setMinLgtd(Double minLgtd) {
- this.minLgtd = minLgtd;
- }
- public Double getMaxLttd() {
- return maxLttd;
- }
- public void setMaxLttd(Double maxLttd) {
- this.maxLttd = maxLttd;
- }
- public Double getMinLttd() {
- return minLttd;
- }
- public void setMinLttd(Double minLttd) {
- this.minLttd = minLttd;
- }
- public String getStatus() {
- return status;
- }
- public void setStatus(String status) {
- this.status = status;
- }
- public String getAdCode() {
- return adCode;
- }
- public void setAdCode(String adCode) {
- this.adCode = adCode;
- }
- public String getPtype() {
- return ptype;
- }
- public void setPtype(String ptype) {
- this.ptype = ptype;
- }
- public String getNm() {
- return nm;
- }
- public void setNm(String nm) {
- this.nm = nm;
- }
- }
|