@@ -0,0 +1,28 @@
+package com.cyksj.model.response;
+
+import lombok.Data;
+/**
+ * Gemini分页信息
+ *
+ * @author chan
+ * @date 2025/1/4
+ */
+@Data
+public class GeminiPagination {
+ /**
+ * 页码
+ private Integer page;
+ * 每页数量
+ private Integer size;
+ * 总数
+ private Integer total;
+}