f0a68f579f45c7a8d045d74a2a368d6436f94d6a.svn-base 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.dcproj.model.BisInspWtgthRgstr;
  3. import io.swagger.annotations.ApiParam;
  4. import java.io.Serializable;
  5. /**
  6. * BisInspWtgthRgstrParam
  7. *
  8. * @author lhc
  9. * @date 2020-10-13
  10. */
  11. public class BisInspWtgthRgstrParam extends BisInspWtgthRgstr implements Serializable {
  12. @ApiParam(
  13. name = "pageNum",
  14. value = "页码",
  15. defaultValue = "1"
  16. )
  17. private int pageNum = 1;
  18. @ApiParam(
  19. name = "pageSize",
  20. value = "每页记录数",
  21. defaultValue = "10"
  22. )
  23. private int pageSize = 10;
  24. @ApiParam(
  25. name = "orderBy",
  26. value = "排序语句(例如:id desc, create_time desc)"
  27. )
  28. private String orderBy;
  29. @ApiParam(
  30. name = "count",
  31. value = "是否查询总数(默认不)",
  32. defaultValue = "false"
  33. )
  34. private boolean count = false;
  35. @ApiParam(
  36. name = "offset",
  37. value = "偏移量:上页最后一条记录标识"
  38. )
  39. private String offset;
  40. private String sttm;
  41. private String entm;
  42. @ApiParam("组ID 数组")
  43. private String[] groupIds;
  44. @ApiParam("行政区划编码列表 ")
  45. private String adCodes;
  46. @ApiParam("当前数据,历史数据:0全部,1当前2历史")
  47. private String tabType;
  48. @ApiParam("当前时间")
  49. private String nowTime;
  50. @ApiParam("查询所有字段")
  51. private String isAll;
  52. private String presId;
  53. @ApiParam("督查类型value")
  54. private String pType;
  55. @ApiParam("督促类型code")
  56. private String type;
  57. @ApiParam("流域名称")
  58. private String riverId;
  59. @ApiParam("节点Id")
  60. private String plnaId;
  61. public BisInspWtgthRgstrParam() {
  62. }
  63. public String getSttm() {
  64. return sttm;
  65. }
  66. public void setSttm(String sttm) {
  67. this.sttm = sttm;
  68. }
  69. public String getEntm() {
  70. return entm;
  71. }
  72. public void setEntm(String entm) {
  73. this.entm = entm;
  74. }
  75. public int getPageNum() {
  76. return this.pageNum;
  77. }
  78. public void setPageNum(int pageNum) {
  79. this.pageNum = pageNum;
  80. }
  81. public int getPageSize() {
  82. return this.pageSize;
  83. }
  84. public void setPageSize(int pageSize) {
  85. this.pageSize = pageSize;
  86. }
  87. public String getOrderBy() {
  88. return this.orderBy;
  89. }
  90. public void setOrderBy(String orderBy) {
  91. this.orderBy = orderBy;
  92. }
  93. public boolean getCount() {
  94. return this.count;
  95. }
  96. public void setCount(boolean containPageInfo) {
  97. this.count = this.count;
  98. }
  99. public String getOffset() {
  100. return this.offset;
  101. }
  102. public void setOffset(String offset) {
  103. this.offset = offset;
  104. }
  105. public String[] getGroupIds() {
  106. return groupIds;
  107. }
  108. public void setGroupIds(String[] groupIds) {
  109. this.groupIds = groupIds;
  110. }
  111. public String getAdCodes() {
  112. return adCodes;
  113. }
  114. public void setAdCodes(String adCodes) {
  115. this.adCodes = adCodes;
  116. }
  117. public String getTabType() {
  118. return tabType;
  119. }
  120. public void setTabType(String tabType) {
  121. this.tabType = tabType;
  122. }
  123. public String getNowTime() {
  124. return nowTime;
  125. }
  126. public void setNowTime(String nowTime) {
  127. this.nowTime = nowTime;
  128. }
  129. public String getIsAll() {
  130. return isAll;
  131. }
  132. public void setIsAll(String isAll) {
  133. this.isAll = isAll;
  134. }
  135. public String getPresId() {
  136. return presId;
  137. }
  138. public void setPresId(String presId) {
  139. this.presId = presId;
  140. }
  141. public String getpType() {
  142. return pType;
  143. }
  144. public void setpType(String pType) {
  145. this.pType = pType;
  146. }
  147. public String getType() {
  148. return type;
  149. }
  150. public void setType(String type) {
  151. this.type = type;
  152. }
  153. public String getRiverId() {
  154. return riverId;
  155. }
  156. public void setRiverId(String riverId) {
  157. this.riverId = riverId;
  158. }
  159. public String getPlnaId() {
  160. return plnaId;
  161. }
  162. public void setPlnaId(String plnaId) {
  163. this.plnaId = plnaId;
  164. }
  165. }