e3a5f02e6cf564928edd6fc0f8250dd563cee6e9.svn-base 2.1 KB

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