ee88a409452bc1ae3805ecda8c8e8188c211894a.svn-base 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.dcproj.model.BisInspRsvrCamera;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import io.swagger.annotations.ApiParam;
  5. import java.io.Serializable;
  6. /**
  7. * BisInspRsvrCameraParam
  8. *
  9. * @author lxf
  10. * @date 2023年8月11日
  11. */
  12. public class BisInspRsvrCameraParam extends BisInspRsvrCamera 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(value = "机构id(必填)作为检索条件",required = true)
  42. private String orgId;
  43. @ApiModelProperty("行政编码,不需要传")
  44. private String province;
  45. public int getPageNum() {
  46. return pageNum;
  47. }
  48. public void setPageNum(int pageNum) {
  49. this.pageNum = pageNum;
  50. }
  51. public int getPageSize() {
  52. return pageSize;
  53. }
  54. public void setPageSize(int pageSize) {
  55. this.pageSize = pageSize;
  56. }
  57. public String getOrderBy() {
  58. return orderBy;
  59. }
  60. public void setOrderBy(String orderBy) {
  61. this.orderBy = orderBy;
  62. }
  63. public boolean isCount() {
  64. return count;
  65. }
  66. public void setCount(boolean count) {
  67. this.count = count;
  68. }
  69. public String getOffset() {
  70. return offset;
  71. }
  72. public void setOffset(String offset) {
  73. this.offset = offset;
  74. }
  75. @Override
  76. public String getOrgId() {
  77. return orgId;
  78. }
  79. @Override
  80. public void setOrgId(String orgId) {
  81. this.orgId = orgId;
  82. }
  83. @Override
  84. public String getProvince() {
  85. return province;
  86. }
  87. @Override
  88. public void setProvince(String province) {
  89. this.province = province;
  90. }
  91. }