096c0a1f8aa132dbaaabc5dd1de0cdeb4df9ef8a.svn-base 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.dcproj.model.TacEvaluationGroupLeader;
  3. import io.swagger.annotations.ApiParam;
  4. import java.io.Serializable;
  5. /**
  6. * 专家组长测评对象 TAC_EVALUATION_GROUP_LEADER
  7. *
  8. * @author ruoyi
  9. * @date 2023-03-06
  10. */
  11. public class TacEvaluationGroupLeaderParam extends TacEvaluationGroupLeader implements Serializable
  12. {
  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. @ApiParam(
  42. name = "fields",
  43. value = "查询字段列表(例如:id, name, email)"
  44. )
  45. private String fields;
  46. @ApiParam(
  47. name = "mobilenumb",
  48. value = "专家手机号"
  49. )
  50. private String mobilenumb;
  51. /**
  52. * 构造器 无参
  53. */
  54. public TacEvaluationGroupLeaderParam(){}
  55. public int getPageNum() {
  56. return this.pageNum;
  57. }
  58. public void setPageNum(int pageNum) {
  59. this.pageNum = pageNum;
  60. }
  61. public int getPageSize() {
  62. return this.pageSize;
  63. }
  64. public void setPageSize(int pageSize) {
  65. this.pageSize = pageSize;
  66. }
  67. public String getOrderBy() {
  68. return this.orderBy;
  69. }
  70. public void setOrderBy(String orderBy) {
  71. this.orderBy = orderBy;
  72. }
  73. public boolean getCount() {
  74. return this.count;
  75. }
  76. public void setCount(boolean containPageInfo) {
  77. this.count = this.count;
  78. }
  79. public String getOffset() {
  80. return this.offset;
  81. }
  82. public void setOffset(String offset) {
  83. this.offset = offset;
  84. }
  85. public String getFields() {
  86. return this.fields;
  87. }
  88. public void setFields(String fields) {
  89. this.fields = fields;
  90. }
  91. public String getMobilenumb() {
  92. return mobilenumb;
  93. }
  94. public void setMobilenumb(String mobilenumb) {
  95. this.mobilenumb = mobilenumb;
  96. }
  97. }