6f53d1554a65533ce0c8e723ed4076f057ea572d.svn-base 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.dcproj.model.BisInspPblm;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import io.swagger.annotations.ApiParam;
  5. import java.io.Serializable;
  6. /**
  7. * BisInspPblmParam
  8. *
  9. * @author lune
  10. * @date 2019-2-23
  11. */
  12. public class BisInspPblmParam extends BisInspPblm implements Serializable {
  13. @ApiModelProperty("分组sql拼接")
  14. private String inIdsSql;
  15. @ApiModelProperty("所有登记表")
  16. private String[] rgsterTable;
  17. @ApiModelProperty("业务处室")
  18. private String[] depm;
  19. @ApiModelProperty("时间")
  20. private String timeType;
  21. private String sttm;
  22. private String entm;
  23. private String year;
  24. @ApiParam(
  25. name = "pageNum",
  26. value = "页码",
  27. defaultValue = "1"
  28. )
  29. private int pageNum = 1;
  30. @ApiParam(
  31. name = "pageSize",
  32. value = "每页记录数",
  33. defaultValue = "10"
  34. )
  35. private int pageSize = 10;
  36. @ApiParam(
  37. name = "orderBy",
  38. value = "排序语句(例如:id desc, create_time desc)"
  39. )
  40. private String orderBy;
  41. @ApiParam(
  42. name = "count",
  43. value = "是否查询总数(默认不)",
  44. defaultValue = "false"
  45. )
  46. private boolean count = false;
  47. @ApiParam(
  48. name = "offset",
  49. value = "偏移量:上页最后一条记录标识"
  50. )
  51. private String offset;
  52. public String[] getDepm() {
  53. return depm;
  54. }
  55. public void setDepm(String[] depm) {
  56. this.depm = depm;
  57. }
  58. public String getYear() {
  59. return year;
  60. }
  61. public void setYear(String year) {
  62. this.year = year;
  63. }
  64. public String getSttm() {
  65. return sttm;
  66. }
  67. public void setSttm(String sttm) {
  68. this.sttm = sttm;
  69. }
  70. public String getEntm() {
  71. return entm;
  72. }
  73. public void setEntm(String entm) {
  74. this.entm = entm;
  75. }
  76. public String getTimeType() {
  77. return timeType;
  78. }
  79. public void setTimeType(String timeType) {
  80. this.timeType = timeType;
  81. }
  82. public String[] getRgsterTable() {
  83. return rgsterTable;
  84. }
  85. public void setRgsterTable(String[] rgsterTable) {
  86. this.rgsterTable = rgsterTable;
  87. }
  88. public int getPageNum() {
  89. return this.pageNum;
  90. }
  91. public void setPageNum(int pageNum) {
  92. this.pageNum = pageNum;
  93. }
  94. public int getPageSize() {
  95. return this.pageSize;
  96. }
  97. public void setPageSize(int pageSize) {
  98. this.pageSize = pageSize;
  99. }
  100. public String getOrderBy() {
  101. return this.orderBy;
  102. }
  103. public void setOrderBy(String orderBy) {
  104. this.orderBy = orderBy;
  105. }
  106. public boolean getCount() {
  107. return this.count;
  108. }
  109. public void setCount(boolean containPageInfo) {
  110. this.count = this.count;
  111. }
  112. public String getOffset() {
  113. return this.offset;
  114. }
  115. public void setOffset(String offset) {
  116. this.offset = offset;
  117. }
  118. public String getInIdsSql() {
  119. return inIdsSql;
  120. }
  121. public void setInIdsSql(String inIdsSql) {
  122. this.inIdsSql = inIdsSql;
  123. }
  124. }