37afc54e7acb04c443f57fd58ea7e2716be8bcc8.svn-base 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.dcproj.model.BisInspWtdst;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import io.swagger.annotations.ApiParam;
  5. import java.io.Serializable;
  6. import java.util.List;
  7. /**
  8. * BisInspWtdstParam
  9. *
  10. * @author zhengdafei
  11. * @date 2019-3-5
  12. */
  13. public class BisInspWtdstParam extends BisInspWtdst implements Serializable {
  14. @ApiParam(
  15. name = "pageNum",
  16. value = "页码",
  17. defaultValue = "1"
  18. )
  19. private int pageNum = 1;
  20. @ApiParam(
  21. name = "pageSize",
  22. value = "每页记录数",
  23. defaultValue = "10"
  24. )
  25. private int pageSize = 10;
  26. @ApiParam(
  27. name = "orderBy",
  28. value = "排序语句(例如:id desc, create_time desc)"
  29. )
  30. private String orderBy;
  31. @ApiParam(
  32. name = "count",
  33. value = "是否查询总数(默认不)",
  34. defaultValue = "false"
  35. )
  36. private boolean count = false;
  37. @ApiParam(
  38. name = "offset",
  39. value = "偏移量:上页最后一条记录标识"
  40. )
  41. private String offset;
  42. @ApiModelProperty(value = "人员id")
  43. private String persId;
  44. @ApiParam(
  45. name = "wtdstIds",
  46. value = "水毁ID:多个以英文半角逗号隔开"
  47. )
  48. private List<String> wtdstIds;
  49. public String getPersId() {
  50. return persId;
  51. }
  52. public void setPersId(String persId) {
  53. this.persId = persId;
  54. }
  55. public int getPageNum() {
  56. return this.pageNum;
  57. }
  58. public void setPageNum(int pageNum) {
  59. this.pageNum = pageNum;
  60. }
  61. public int getPageSize() {
  62. return this.pageSize;
  63. }
  64. public void setPageSize(int pageSize) {
  65. this.pageSize = pageSize;
  66. }
  67. public String getOrderBy() {
  68. return this.orderBy;
  69. }
  70. public void setOrderBy(String orderBy) {
  71. this.orderBy = orderBy;
  72. }
  73. public boolean getCount() {
  74. return this.count;
  75. }
  76. public void setCount(boolean containPageInfo) {
  77. this.count = this.count;
  78. }
  79. public String getOffset() {
  80. return this.offset;
  81. }
  82. public void setOffset(String offset) {
  83. this.offset = offset;
  84. }
  85. public List<String> getWtdstIds() {
  86. return wtdstIds;
  87. }
  88. public void setWtdstIds(List<String> wtdstIds) {
  89. this.wtdstIds = wtdstIds;
  90. }
  91. }