2cbdeab8173e5ad4fabc7a57b82fcb30ab042db6.svn-base 2.3 KB

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