32d2ea6ba2beab7161ed5a9e68c3daedfe51aefe.svn-base 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import io.swagger.annotations.ApiParam;
  5. import java.io.Serializable;
  6. public class AttGrwListByParam implements Serializable {
  7. //行政区划代码
  8. @ApiParam(value = "行政区划代码")
  9. @ApiModelProperty(value = "行政区划代码")
  10. private String adcd;
  11. //行政区划名称
  12. @ApiParam(value = "行政区划名")
  13. @ApiModelProperty(value = "行政区划名称")
  14. private String adnm;
  15. //监测站类别
  16. @ApiParam(value = "监测站类别(国家级NAT,省级PRO)")
  17. @ApiModelProperty(value = "监测站类别(国家级NAT,省级PRO)")
  18. private String sttp;
  19. @ApiModelProperty(value = "此参数不用传")
  20. private String sttp2;
  21. //监测站名称
  22. @ApiParam(value = "监测站名称")
  23. @ApiModelProperty(value = "监测站名称")
  24. private String stnm;
  25. @ApiModelProperty(value = "页码,必填")
  26. private int pageNum = 1;
  27. @ApiModelProperty(value = "每页记录数,必填")
  28. private int pageSize = 10;
  29. @ApiModelProperty(value = "排序语句(默认:stcd desc, 按名称 升序/降序STNM asc/desc ,必填)", required = true)
  30. private String orderBy;
  31. @ApiModelProperty(value = "人员id")
  32. private String persId;
  33. public int getPageNum() {
  34. return pageNum;
  35. }
  36. public void setPageNum(int pageNum) {
  37. this.pageNum = pageNum;
  38. }
  39. public int getPageSize() {
  40. return pageSize;
  41. }
  42. public void setPageSize(int pageSize) {
  43. this.pageSize = pageSize;
  44. }
  45. public String getOrderBy() {
  46. return orderBy;
  47. }
  48. public void setOrderBy(String orderBy) {
  49. this.orderBy = orderBy;
  50. }
  51. public String getAdcd() {
  52. return adcd;
  53. }
  54. public void setAdcd(String adcd) {
  55. this.adcd = adcd;
  56. }
  57. public String getAdnm() {
  58. return adnm;
  59. }
  60. public void setAdnm(String adnm) {
  61. this.adnm = adnm;
  62. }
  63. public String getSttp() {
  64. return sttp;
  65. }
  66. public void setSttp(String sttp) {
  67. this.sttp = sttp;
  68. }
  69. public String getStnm() {
  70. return stnm;
  71. }
  72. public void setStnm(String stnm) {
  73. this.stnm = stnm;
  74. }
  75. public String getSttp2() {
  76. return sttp2;
  77. }
  78. public void setSttp2(String sttp2) {
  79. this.sttp2 = sttp2;
  80. }
  81. public String getPersId() {
  82. return persId;
  83. }
  84. public void setPersId(String persId) {
  85. this.persId = persId;
  86. }
  87. }