You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
959 B

  1. package com.example.demo.domain.DTO;
  2. import com.example.demo.domain.vo.cash.CashRecordDTO;
  3. import jakarta.validation.constraints.NotNull;
  4. import lombok.Data;
  5. import lombok.NoArgsConstructor;
  6. /**
  7. * @program: GOLD
  8. * @ClassName FinanceDTO
  9. * @description:
  10. * @author: huangqizhen
  11. * @create: 202511-06 21:22
  12. * @Version 1.0
  13. **/
  14. @Data
  15. @NoArgsConstructor
  16. public class FinanceDTO {
  17. private String token;
  18. private String url = "";
  19. private String fileName = "";
  20. private Integer sort = 0;
  21. private String field = "";
  22. private Integer account;
  23. private Integer type = 12; //类型
  24. private Integer state = 0; //状态
  25. private String text = ""; //关键词搜索
  26. private Integer dataNum = 0;
  27. private String deptid = "";
  28. private CashRecordDTO cashRecordDTO;
  29. @NotNull(message = "page不能为空")
  30. private Integer page = 1;
  31. @NotNull(message = "pageSize不能为空")
  32. private Integer pageSize = 5000;
  33. }