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.

38 lines
1.1 KiB

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