MyCollectInAdvanceQueryNewDto.java 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. package com.ydtech.modules.admin.model.dto;
  2. import io.swagger.annotations.ApiModel;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import lombok.Data;
  5. import java.util.ArrayList;
  6. import java.util.List;
  7. /**
  8. * @version
  9. * @author: hxl
  10. * @Date: 2024/6/19 9:55
  11. * @Description: 预收明细查询对象
  12. */
  13. @Data
  14. @ApiModel("预收明细查询对象")
  15. public class MyCollectInAdvanceQueryNewDto {
  16. /***
  17. * 用户id
  18. */
  19. @ApiModelProperty(value = "用户id")
  20. private String userId;
  21. /***
  22. * 业务版块类型
  23. */
  24. @ApiModelProperty(value = "业务版块类型")
  25. private String businessSegmentsType;
  26. /***
  27. * 交易类型
  28. */
  29. @ApiModelProperty(value = "交易类型")
  30. private String transactionType;
  31. /***
  32. * 时间筛选类型 0.全部 1.一周内 2. 一月内 3. 三月内 4. 六月内
  33. */
  34. @ApiModelProperty(value = "时间筛选类型 0.全部 1.一周内 2. 一月内 3. 三月内 4. 六月内")
  35. private String dateQueryType;
  36. /***
  37. * 开始时间
  38. */
  39. @ApiModelProperty(value = "开始时间")
  40. private String startDate;
  41. /***
  42. * 结束时间
  43. */
  44. @ApiModelProperty(value = "结束时间")
  45. private String endDate;
  46. @ApiModelProperty(value = "每页页数")
  47. private int pageSize;
  48. @ApiModelProperty(value = "页数")
  49. private int pageNum;
  50. /***
  51. * 车牌
  52. */
  53. @ApiModelProperty(value = "车牌")
  54. private String licenseNo;
  55. /***
  56. * 交易类型
  57. */
  58. @ApiModelProperty(value = "收支类型")
  59. private String incomeAndExpensesType;
  60. /***
  61. * 开始时间
  62. */
  63. @ApiModelProperty(value = "签单开始时间")
  64. private String signBeginDate;
  65. /***
  66. * 结束时间
  67. */
  68. @ApiModelProperty(value = "签单结束时间")
  69. private String signEndDate;
  70. /***
  71. * 电销组长数据
  72. */
  73. private Boolean groupFlag=false;
  74. }