c439ecbdbcebab0ad61fe7c946e70055e2bbb812.svn-base 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.dcproj.dto.AttAnzeUnderwritingDto;
  3. import cn.com.goldenwater.dcproj.model.AttProjectInsurance;
  4. import io.swagger.annotations.ApiParam;
  5. import java.io.Serializable;
  6. /**
  7. * AttProjectInsuranceParam
  8. *
  9. * @author lql
  10. * @date 2026-4-21
  11. */
  12. public class AttAnzeUnderwritingParam extends AttAnzeUnderwritingDto implements Serializable {
  13. @ApiParam(name = "pageNum", value = "页码", defaultValue = "1" )
  14. private int pageNum = 1;
  15. @ApiParam(
  16. name = "pageSize",
  17. value = "每页记录数",
  18. defaultValue = "10"
  19. )
  20. private int pageSize = 10;
  21. @ApiParam(
  22. name = "orderBy",
  23. value = "排序语句(例如:id desc, create_time desc)"
  24. )
  25. private String orderBy;
  26. @ApiParam(
  27. name = "count",
  28. value = "是否查询总数(默认不)",
  29. defaultValue = "false"
  30. )
  31. private boolean count = false;
  32. @ApiParam(
  33. name = "offset",
  34. value = "偏移量:上页最后一条记录标识"
  35. )
  36. private String offset;
  37. private Integer year1;
  38. private Integer year2;
  39. public Integer getYear1() {
  40. return year1;
  41. }
  42. public void setYear1(Integer year1) {
  43. this.year1 = year1;
  44. }
  45. public Integer getYear2() {
  46. return year2;
  47. }
  48. public void setYear2(Integer year2) {
  49. this.year2 = year2;
  50. }
  51. public int getPageNum() {
  52. return pageNum;
  53. }
  54. public void setPageNum(int pageNum) {
  55. this.pageNum = pageNum;
  56. }
  57. public int getPageSize() {
  58. return pageSize;
  59. }
  60. public void setPageSize(int pageSize) {
  61. this.pageSize = pageSize;
  62. }
  63. public String getOrderBy() {
  64. return orderBy;
  65. }
  66. public void setOrderBy(String orderBy) {
  67. this.orderBy = orderBy;
  68. }
  69. public boolean isCount() {
  70. return count;
  71. }
  72. public void setCount(boolean count) {
  73. this.count = count;
  74. }
  75. public String getOffset() {
  76. return offset;
  77. }
  78. public void setOffset(String offset) {
  79. this.offset = offset;
  80. }
  81. }