8f25b1500f4cb0bd9dcd44767297fdfed7efaae1.svn-base 2.1 KB

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