ffb37d887e57211ce4e769f31b8ca0fea61d963c.svn-base 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.dcproj.model.BisInspRsvrBenefits;
  3. import io.swagger.annotations.ApiParam;
  4. import java.io.Serializable;
  5. /**
  6. * BisInspRsvrBenefitsParam
  7. *
  8. * @author lune
  9. * @date 2019-6-11
  10. */
  11. public class BisInspRsvrBenefitsParam extends BisInspRsvrBenefits implements Serializable {
  12. @ApiParam(
  13. name = "pageNum",
  14. value = "页码",
  15. defaultValue = "1"
  16. )
  17. private int pageNum = 1;
  18. @ApiParam(
  19. name = "pageSize",
  20. value = "每页记录数",
  21. defaultValue = "10"
  22. )
  23. private int pageSize = 10;
  24. @ApiParam(
  25. name = "orderBy",
  26. value = "排序语句(例如:id desc, create_time desc)"
  27. )
  28. private String orderBy;
  29. @ApiParam(
  30. name = "count",
  31. value = "是否查询总数(默认不)",
  32. defaultValue = "false"
  33. )
  34. private boolean count = false;
  35. @ApiParam(
  36. name = "offset",
  37. value = "偏移量:上页最后一条记录标识"
  38. )
  39. private String offset;
  40. public int getPageNum() {
  41. return this.pageNum;
  42. }
  43. public void setPageNum(int pageNum) {
  44. this.pageNum = pageNum;
  45. }
  46. public int getPageSize() {
  47. return this.pageSize;
  48. }
  49. public void setPageSize(int pageSize) {
  50. this.pageSize = pageSize;
  51. }
  52. public String getOrderBy() {
  53. return this.orderBy;
  54. }
  55. public void setOrderBy(String orderBy) {
  56. this.orderBy = orderBy;
  57. }
  58. public boolean getCount() {
  59. return this.count;
  60. }
  61. public void setCount(boolean containPageInfo) {
  62. this.count = this.count;
  63. }
  64. public String getOffset() {
  65. return this.offset;
  66. }
  67. public void setOffset(String offset) {
  68. this.offset = offset;
  69. }
  70. }