cf40a5583faedd8e1a55ea3b67fc1e656043ca6b.svn-base 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.dcproj.model.BisInspWtgtRgstrPay;
  3. import io.swagger.annotations.ApiParam;
  4. import java.io.Serializable;
  5. /**
  6. * BisInspWtgtRgstrPayParam
  7. *
  8. * @author lhc
  9. * @date 2020-9-18
  10. */
  11. public class BisInspWtgtRgstrPayParam extends BisInspWtgtRgstrPay 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. private String sttm;
  41. private String entm;
  42. public String getSttm() {
  43. return sttm;
  44. }
  45. public void setSttm(String sttm) {
  46. this.sttm = sttm;
  47. }
  48. public String getEntm() {
  49. return entm;
  50. }
  51. public void setEntm(String entm) {
  52. this.entm = entm;
  53. }
  54. public int getPageNum() {
  55. return this.pageNum;
  56. }
  57. public void setPageNum(int pageNum) {
  58. this.pageNum = pageNum;
  59. }
  60. public int getPageSize() {
  61. return this.pageSize;
  62. }
  63. public void setPageSize(int pageSize) {
  64. this.pageSize = pageSize;
  65. }
  66. public String getOrderBy() {
  67. return this.orderBy;
  68. }
  69. public void setOrderBy(String orderBy) {
  70. this.orderBy = orderBy;
  71. }
  72. public boolean getCount() {
  73. return this.count;
  74. }
  75. public void setCount(boolean containPageInfo) {
  76. this.count = this.count;
  77. }
  78. public String getOffset() {
  79. return this.offset;
  80. }
  81. public void setOffset(String offset) {
  82. this.offset = offset;
  83. }
  84. }