0c81039c1d98f6ececad47186dde19ba2f7d4d28.svn-base 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  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. * Created by jinshui on 2019/8/12.
  8. */
  9. public class PblmParam extends BisInspPblm implements Serializable {
  10. @ApiModelProperty("分组sql拼接")
  11. private String inIdsSql;
  12. @ApiModelProperty("当前数据,历史数据:0全部,1当前2历史")
  13. private String tabType;
  14. @ApiModelProperty("当前时间")
  15. private String nowTime;
  16. @ApiModelProperty("左侧机构id列表")
  17. private String orgIds;
  18. @ApiModelProperty("多个行政区划编码")
  19. private String adCodes;
  20. @ApiModelProperty("对象id")
  21. private String persId;
  22. @ApiModelProperty("督查对象类型")
  23. private String pType;
  24. @ApiModelProperty("分类")
  25. private String type;
  26. @ApiModelProperty("是否整改(1:是;2:否)")
  27. private String rect;
  28. @ApiModelProperty("多个督查对象编码")
  29. private String codes;
  30. @ApiModelProperty("问题类型ID")
  31. private String bplmsTypeId;
  32. @ApiParam(name = "pageNum", value = "页码", defaultValue = "1")
  33. private int pageNum = 1;
  34. @ApiParam(name = "pageSize", value = "每页记录数", defaultValue = "10")
  35. private int pageSize = 10;
  36. @ApiParam(name = "orderBy", value = "排序语句(例如:id desc, create_time desc)")
  37. private String orderBy;
  38. @ApiParam(name = "count", value = "是否查询总数(默认不)", defaultValue = "false")
  39. private boolean count = false;
  40. @ApiParam(name = "offset", value = "偏移量:上页最后一条记录标识")
  41. private String offset;
  42. @ApiParam(name = "secId", value = "公司ID")
  43. private String secId;
  44. @ApiParam(name = "state", value = "状态")
  45. private String state;
  46. public String getState() {
  47. return state;
  48. }
  49. public void setState(String state) {
  50. this.state = state;
  51. }
  52. public String getSecId() {
  53. return secId;
  54. }
  55. public void setSecId(String secId) {
  56. this.secId = secId;
  57. }
  58. public String getInIdsSql() {
  59. return inIdsSql;
  60. }
  61. public void setInIdsSql(String inIdsSql) {
  62. this.inIdsSql = inIdsSql;
  63. }
  64. public int getPageNum() {
  65. return this.pageNum;
  66. }
  67. public void setPageNum(int pageNum) {
  68. this.pageNum = pageNum;
  69. }
  70. public int getPageSize() {
  71. return this.pageSize;
  72. }
  73. public void setPageSize(int pageSize) {
  74. this.pageSize = pageSize;
  75. }
  76. public String getOrderBy() {
  77. return this.orderBy;
  78. }
  79. public void setOrderBy(String orderBy) {
  80. this.orderBy = orderBy;
  81. }
  82. public boolean getCount() {
  83. return this.count;
  84. }
  85. public void setCount(boolean containPageInfo) {
  86. this.count = this.count;
  87. }
  88. public String getOffset() {
  89. return this.offset;
  90. }
  91. public void setOffset(String offset) {
  92. this.offset = offset;
  93. }
  94. public String getTabType() {
  95. return tabType;
  96. }
  97. public void setTabType(String tabType) {
  98. this.tabType = tabType;
  99. }
  100. public String getNowTime() {
  101. return nowTime;
  102. }
  103. public void setNowTime(String nowTime) {
  104. this.nowTime = nowTime;
  105. }
  106. public String getBplmsTypeId() {
  107. return bplmsTypeId;
  108. }
  109. public void setBplmsTypeId(String bplmsTypeId) {
  110. this.bplmsTypeId = bplmsTypeId;
  111. }
  112. public String getCodes() {
  113. return codes;
  114. }
  115. public void setCodes(String codes) {
  116. this.codes = codes;
  117. }
  118. public String getRect() {
  119. return rect;
  120. }
  121. public void setRect(String rect) {
  122. this.rect = rect;
  123. }
  124. public String getPersId() {
  125. return persId;
  126. }
  127. public void setPersId(String persId) {
  128. this.persId = persId;
  129. }
  130. public String getpType() {
  131. return pType;
  132. }
  133. public void setpType(String pType) {
  134. this.pType = pType;
  135. }
  136. public String getType() {
  137. return type;
  138. }
  139. public void setType(String type) {
  140. this.type = type;
  141. }
  142. public String getOrgIds() {
  143. return orgIds;
  144. }
  145. public void setOrgIds(String orgIds) {
  146. this.orgIds = orgIds;
  147. }
  148. public String getAdCodes() {
  149. return adCodes;
  150. }
  151. public void setAdCodes(String adCodes) {
  152. this.adCodes = adCodes;
  153. }
  154. }