| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * Created by jinshui on 2019/7/15.
- */
- public class GeneralInfoParam extends PageParam {
- @ApiModelProperty("分组sql拼接")
- private String inIdsSql;
- public String getInIdsSql() {
- return inIdsSql;
- }
- public void setInIdsSql(String inIdsSql) {
- this.inIdsSql = inIdsSql;
- }
- private String persId;
- private String adCode;
- private String name;
- private String status;
- @ApiModelProperty(value = "pers:人员,rsvr:水库,other:其他")
- private String type;
- private String objType;
- @ApiModelProperty(value = "水文站查询条件")
- private String frgrd;
- private String lv;
- @ApiModelProperty(value = "最大高德经度")
- private Double maxcenterXGd;
- @ApiModelProperty(value = "最小高德经度")
- private Double mincenterXGd;
- @ApiModelProperty(value = "最大高德纬度")
- private Double maxcenterYGd;
- @ApiModelProperty(value = "最小高德纬度")
- private Double mincenterYGd;
- @ApiModelProperty(value = "省市标志2为省,3为市")
- private String adGrad;
- @ApiModelProperty("是否导出 1:导出")
- private String isExport;
- private String engSta;
- private Double maxLgtd;
- private Double minLgtd;
- private Double maxLttd;
- private Double minLttd;
- @ApiModelProperty("显示等级")
- private String displayLevel;
- /**
- * 查询 时间段 内的 问题
- */
- private String startTime;
- private String endTime;
- @ApiModelProperty("1代表督查,2代表稽察。无值标识所有菜单")
- private String ownApp;
- public GeneralInfoParam() {
- }
- public String getDisplayLevel() {
- return displayLevel;
- }
- public void setDisplayLevel(String displayLevel) {
- this.displayLevel = displayLevel;
- }
- 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 getIsExport() {
- return isExport;
- }
- public void setIsExport(String isExport) {
- this.isExport = isExport;
- }
- public String getEngSta() {
- return engSta;
- }
- public String getAdGrad() {
- return adGrad;
- }
- public void setAdGrad(String adGrad) {
- this.adGrad = adGrad;
- }
- 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 getFrgrd() {
- return frgrd;
- }
- public void setFrgrd(String frgrd) {
- this.frgrd = frgrd;
- }
- public String getLv() {
- return lv;
- }
- public void setLv(String lv) {
- this.lv = lv;
- }
- public String getObjType() {
- return objType;
- }
- public void setObjType(String objType) {
- this.objType = objType;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public String getAdCode() {
- return adCode;
- }
- public void setAdCode(String adCode) {
- this.adCode = adCode;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getStatus() {
- return status;
- }
- public void setStatus(String status) {
- this.status = status;
- }
- public String getStartTime() {
- return startTime;
- }
- public void setStartTime(String startTime) {
- this.startTime = startTime;
- }
- public String getEndTime() {
- return endTime;
- }
- public void setEndTime(String endTime) {
- this.endTime = endTime;
- }
- public String getOwnApp() {
- return ownApp;
- }
- public void setOwnApp(String ownApp) {
- this.ownApp = ownApp;
- }
- }
|