| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- import io.swagger.annotations.ApiParam;
- import java.io.Serializable;
- public class AttGrwListByParam implements Serializable {
- //行政区划代码
- @ApiParam(value = "行政区划代码")
- @ApiModelProperty(value = "行政区划代码")
- private String adcd;
- //行政区划名称
- @ApiParam(value = "行政区划名")
- @ApiModelProperty(value = "行政区划名称")
- private String adnm;
- //监测站类别
- @ApiParam(value = "监测站类别(国家级NAT,省级PRO)")
- @ApiModelProperty(value = "监测站类别(国家级NAT,省级PRO)")
- private String sttp;
- @ApiModelProperty(value = "此参数不用传")
- private String sttp2;
- //监测站名称
- @ApiParam(value = "监测站名称")
- @ApiModelProperty(value = "监测站名称")
- private String stnm;
- @ApiModelProperty(value = "页码,必填")
- private int pageNum = 1;
- @ApiModelProperty(value = "每页记录数,必填")
- private int pageSize = 10;
- @ApiModelProperty(value = "排序语句(默认:stcd desc, 按名称 升序/降序STNM asc/desc ,必填)", required = true)
- private String orderBy;
- @ApiModelProperty(value = "人员id")
- private String persId;
- public int getPageNum() {
- return pageNum;
- }
- public void setPageNum(int pageNum) {
- this.pageNum = pageNum;
- }
- public int getPageSize() {
- return pageSize;
- }
- public void setPageSize(int pageSize) {
- this.pageSize = pageSize;
- }
- public String getOrderBy() {
- return orderBy;
- }
- public void setOrderBy(String orderBy) {
- this.orderBy = orderBy;
- }
- public String getAdcd() {
- return adcd;
- }
- public void setAdcd(String adcd) {
- this.adcd = adcd;
- }
- public String getAdnm() {
- return adnm;
- }
- public void setAdnm(String adnm) {
- this.adnm = adnm;
- }
- public String getSttp() {
- return sttp;
- }
- public void setSttp(String sttp) {
- this.sttp = sttp;
- }
- public String getStnm() {
- return stnm;
- }
- public void setStnm(String stnm) {
- this.stnm = stnm;
- }
- public String getSttp2() {
- return sttp2;
- }
- public void setSttp2(String sttp2) {
- this.sttp2 = sttp2;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- }
|