474d1135dbf6dd37b75c8aa8b8af21dffd1f900c.svn-base 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import cn.com.goldenwater.dcproj.model.BisInspWrwxRgstrWtup;
  4. import io.swagger.annotations.ApiParam;
  5. import java.util.Date;
  6. import java.io.Serializable;
  7. import io.swagger.annotations.ApiModelProperty;
  8. /**
  9. * BisInspWrwxRgstrWtupParam
  10. *
  11. * @author lhc
  12. * @date 2020-9-23
  13. */
  14. public class BisInspWrwxRgstrWtupParam extends BisInspWrwxRgstrWtup implements Serializable {
  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. public BisInspWrwxRgstrWtupParam() {
  44. }
  45. public int getPageNum() {
  46. return this.pageNum;
  47. }
  48. public void setPageNum(int pageNum) {
  49. this.pageNum = pageNum;
  50. }
  51. public int getPageSize() {
  52. return this.pageSize;
  53. }
  54. public void setPageSize(int pageSize) {
  55. this.pageSize = pageSize;
  56. }
  57. public String getOrderBy() {
  58. return this.orderBy;
  59. }
  60. public void setOrderBy(String orderBy) {
  61. this.orderBy = orderBy;
  62. }
  63. public boolean getCount() {
  64. return this.count;
  65. }
  66. public void setCount(boolean containPageInfo) {
  67. this.count = this.count;
  68. }
  69. public String getOffset() {
  70. return this.offset;
  71. }
  72. public void setOffset(String offset) {
  73. this.offset = offset;
  74. }
  75. }