| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- 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 RsStatusInfoParam extends PageParam {
- @ApiModelProperty(value = "人员id,必填")
- private String persGuid;
- private String rsName;
- private String engScal;
- @ApiModelProperty(value = "1-18年/2-19年/3-复查/4-计划外/空-全部")
- private String status;//18年/19年/复查/计划外
- private String adCode;
- 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 = "最大库容")
- private Double totCap;
- private String rsvrState;//督查状态
- @ApiModelProperty(value = "显示等级")
- private String displayLevel;
- @ApiParam(name = "是否导出")
- private String isExport;
- public String getIsExport() {
- return isExport;
- }
- public void setIsExport(String isExport) {
- this.isExport = isExport;
- }
- public String getDisplayLevel() {
- return displayLevel;
- }
- public void setDisplayLevel(String displayLevel) {
- this.displayLevel = displayLevel;
- }
- 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 getRsvrState() {
- return rsvrState;
- }
- public void setRsvrState(String rsvrState) {
- this.rsvrState = rsvrState;
- }
- 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 Double getTotCap() {
- return totCap;
- }
- public void setTotCap(Double totCap) {
- this.totCap = totCap;
- }
- public String getRsName() {
- return rsName;
- }
- public void setRsName(String rsName) {
- this.rsName = rsName;
- }
- public String getEngScal() {
- return engScal;
- }
- public void setEngScal(String engScal) {
- this.engScal = engScal;
- }
- 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;
- }
- @Override
- public String toString() {
- return "RsStatusInfoParam{" +
- "rsName='" + rsName + '\'' +
- ", engScal='" + engScal + '\'' +
- ", status='" + status + '\'' +
- ", adCode='" + adCode + '\'' +
- '}';
- }
- }
|