1c457186fe29765b0124b7c258a07402477a5721.svn-base 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.dcproj.model.BisInspRsmlRgstr;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import io.swagger.annotations.ApiParam;
  5. import java.io.Serializable;
  6. /**
  7. * BisInspRsmlRgstrParam
  8. *
  9. * @author lune
  10. * @date 2020-3-9
  11. */
  12. public class BisInspRsmlRgstrParam extends BisInspRsmlRgstr 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("分组sql拼接")
  42. private String inIdsSql;
  43. @ApiModelProperty("当前数据,历史数据:0全部,1当前2历史")
  44. private String tabType;
  45. @ApiModelProperty("当前时间")
  46. private String nowTime;
  47. @ApiModelProperty("开始时间")
  48. private String sttm;
  49. @ApiModelProperty("结束时间")
  50. private String entm;
  51. @ApiModelProperty("名称")
  52. private String name;
  53. @ApiModelProperty("人员id")
  54. private String persId;
  55. @ApiModelProperty("督查组id")
  56. private String plnaId;
  57. @ApiModelProperty("区划名称")
  58. private String adName;
  59. @ApiModelProperty("检查单位名称")
  60. private String orgName;
  61. public BisInspRsmlRgstrParam() {
  62. }
  63. public String getInIdsSql() {
  64. return inIdsSql;
  65. }
  66. public void setInIdsSql(String inIdsSql) {
  67. this.inIdsSql = inIdsSql;
  68. }
  69. public String getTabType() {
  70. return tabType;
  71. }
  72. public void setTabType(String tabType) {
  73. this.tabType = tabType;
  74. }
  75. public String getNowTime() {
  76. return nowTime;
  77. }
  78. public void setNowTime(String nowTime) {
  79. this.nowTime = nowTime;
  80. }
  81. public String getOrgName() {
  82. return orgName;
  83. }
  84. public void setOrgName(String orgName) {
  85. this.orgName = orgName;
  86. }
  87. public String getAdName() {
  88. return adName;
  89. }
  90. public void setAdName(String adName) {
  91. this.adName = adName;
  92. }
  93. public String getSttm() {
  94. return sttm;
  95. }
  96. public void setSttm(String sttm) {
  97. this.sttm = sttm;
  98. }
  99. public String getEntm() {
  100. return entm;
  101. }
  102. public void setEntm(String entm) {
  103. this.entm = entm;
  104. }
  105. public String getName() {
  106. return name;
  107. }
  108. public void setName(String name) {
  109. this.name = name;
  110. }
  111. public String getPersId() {
  112. return persId;
  113. }
  114. public void setPersId(String persId) {
  115. this.persId = persId;
  116. }
  117. public String getPlnaId() {
  118. return plnaId;
  119. }
  120. public void setPlnaId(String plnaId) {
  121. this.plnaId = plnaId;
  122. }
  123. public int getPageNum() {
  124. return this.pageNum;
  125. }
  126. public void setPageNum(int pageNum) {
  127. this.pageNum = pageNum;
  128. }
  129. public int getPageSize() {
  130. return this.pageSize;
  131. }
  132. public void setPageSize(int pageSize) {
  133. this.pageSize = pageSize;
  134. }
  135. public String getOrderBy() {
  136. return this.orderBy;
  137. }
  138. public void setOrderBy(String orderBy) {
  139. this.orderBy = orderBy;
  140. }
  141. public boolean getCount() {
  142. return this.count;
  143. }
  144. public void setCount(boolean containPageInfo) {
  145. this.count = this.count;
  146. }
  147. public String getOffset() {
  148. return this.offset;
  149. }
  150. public void setOffset(String offset) {
  151. this.offset = offset;
  152. }
  153. }