8c2b9589d11d733761b3bb16b5e1b67b248df0b9.svn-base 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.dcproj.model.BisInspSafetyRgstr;
  3. import io.swagger.annotations.ApiParam;
  4. import java.io.Serializable;
  5. import java.util.Date;
  6. /**
  7. * BisInspSafetyRgstrParam
  8. *
  9. * @author lhc
  10. * @date 2021-3-11
  11. */
  12. public class BisInspSafetyRgstrParam extends BisInspSafetyRgstr 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. private String plnaId;
  42. private String code;
  43. private String nm;
  44. private Date sttm;
  45. private Date entm;
  46. public String getPlnaId() {
  47. return plnaId;
  48. }
  49. public void setPlnaId(String plnaId) {
  50. this.plnaId = plnaId;
  51. }
  52. public String getCode() {
  53. return code;
  54. }
  55. public void setCode(String code) {
  56. this.code = code;
  57. }
  58. public String getNm() {
  59. return nm;
  60. }
  61. public void setNm(String nm) {
  62. this.nm = nm;
  63. }
  64. public Date getSttm() {
  65. return sttm;
  66. }
  67. public void setSttm(Date sttm) {
  68. this.sttm = sttm;
  69. }
  70. public Date getEntm() {
  71. return entm;
  72. }
  73. public void setEntm(Date entm) {
  74. this.entm = entm;
  75. }
  76. public int getPageNum() {
  77. return this.pageNum;
  78. }
  79. public void setPageNum(int pageNum) {
  80. this.pageNum = pageNum;
  81. }
  82. public int getPageSize() {
  83. return this.pageSize;
  84. }
  85. public void setPageSize(int pageSize) {
  86. this.pageSize = pageSize;
  87. }
  88. public String getOrderBy() {
  89. return this.orderBy;
  90. }
  91. public void setOrderBy(String orderBy) {
  92. this.orderBy = orderBy;
  93. }
  94. public boolean getCount() {
  95. return this.count;
  96. }
  97. public void setCount(boolean containPageInfo) {
  98. this.count = this.count;
  99. }
  100. public String getOffset() {
  101. return this.offset;
  102. }
  103. public void setOffset(String offset) {
  104. this.offset = offset;
  105. }
  106. }