0e69ba222e0a753f9260ef5fb948aa81f0b7fce3.svn-base 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.dcproj.model.ChkSafeSelsProj;
  3. import io.swagger.annotations.ApiParam;
  4. import java.io.Serializable;
  5. /**
  6. * 成都市水务安全生产"护安"监管执法专项行动项目类型对象 chk_safe_sels_proj
  7. *
  8. * @author ruoyi
  9. * @date 2023-02-21
  10. */
  11. public class ChkSafeSelsProjParam extends ChkSafeSelsProj implements Serializable
  12. {
  13. @ApiParam(
  14. name = "pageNum",
  15. value = "页码",
  16. defaultValue = "1"
  17. )
  18. private int pageNum = 1;
  19. @ApiParam(
  20. name = "pageSize",
  21. value = "每页记录数",
  22. defaultValue = "10"
  23. )
  24. private int pageSize = 10;
  25. @ApiParam(
  26. name = "orderBy",
  27. value = "排序语句(例如:id desc, create_time desc)"
  28. )
  29. private String orderBy;
  30. @ApiParam(
  31. name = "count",
  32. value = "是否查询总数(默认不)",
  33. defaultValue = "false"
  34. )
  35. private boolean count = false;
  36. @ApiParam(
  37. name = "offset",
  38. value = "偏移量:上页最后一条记录标识"
  39. )
  40. private String offset;
  41. @ApiParam(
  42. name = "fields",
  43. value = "查询字段列表(例如:id, name, email)"
  44. )
  45. private String fields;
  46. /**
  47. * 构造器 无参
  48. */
  49. public ChkSafeSelsProjParam(){}
  50. public int getPageNum() {
  51. return this.pageNum;
  52. }
  53. public void setPageNum(int pageNum) {
  54. this.pageNum = pageNum;
  55. }
  56. public int getPageSize() {
  57. return this.pageSize;
  58. }
  59. public void setPageSize(int pageSize) {
  60. this.pageSize = pageSize;
  61. }
  62. public String getOrderBy() {
  63. return this.orderBy;
  64. }
  65. public void setOrderBy(String orderBy) {
  66. this.orderBy = orderBy;
  67. }
  68. public boolean getCount() {
  69. return this.count;
  70. }
  71. public void setCount(boolean containPageInfo) {
  72. this.count = this.count;
  73. }
  74. public String getOffset() {
  75. return this.offset;
  76. }
  77. public void setOffset(String offset) {
  78. this.offset = offset;
  79. }
  80. public String getFields() {
  81. return this.fields;
  82. }
  83. public void setFields(String fields) {
  84. this.fields = fields;
  85. }
  86. }