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.

45 lines
1.2 KiB

  1. package com.example.demo.domain.DTO;
  2. import com.example.demo.domain.vo.coin.RechargeUser;
  3. import jakarta.validation.constraints.NotNull;
  4. import lombok.Data;
  5. import lombok.NoArgsConstructor;
  6. /**
  7. * @program: GOLD
  8. * @ClassName RechargeDTO
  9. * @description:
  10. * @author: huangqizhen
  11. * @create: 202507-01 16:15
  12. * @Version 1.0
  13. **/
  14. @Data
  15. @NoArgsConstructor
  16. public class RechargeDTO {
  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 = 2; //类型
  24. private Integer state = 0; //状态
  25. private String text = ""; //关键词搜索
  26. private Integer dataNum = 0;
  27. private String deptid = "";
  28. private RechargeUser rechargeUser;
  29. @NotNull(message = "page不能为空")
  30. private Integer page = 1;
  31. @NotNull(message = "pageSize不能为空")
  32. private Integer pageSize = 20;
  33. // @Override
  34. // public String toString() {
  35. // return String.format(
  36. // "AiEmotionExport(account=%d, type=%d, state=%d, dataNum=%d)",
  37. // account, type, state, dataNum
  38. // );
  39. // }
  40. }