GeminiPagination.java 341 B

12345678910111213141516171819202122232425262728
  1. package com.cyksj.model.response;
  2. import lombok.Data;
  3. /**
  4. * Gemini分页信息
  5. *
  6. * @author chan
  7. * @date 2025/1/4
  8. */
  9. @Data
  10. public class GeminiPagination {
  11. /**
  12. * 页码
  13. */
  14. private Integer page;
  15. /**
  16. * 每页数量
  17. */
  18. private Integer size;
  19. /**
  20. * 总数
  21. */
  22. private Integer total;
  23. }