From 10f9cb09c6a2de67c5f6bc22968c7c05ac99b191 Mon Sep 17 00:00:00 2001
From: huliguo <2023611923@qq.com>
Date: 星期二, 12 八月 2025 11:24:24 +0800
Subject: [PATCH] 时间戳更新,25年8月底 修改导出数据接口参数字段 增加任务记录查询条件

---
 guns-core/src/main/java/com/stylefeng/guns/core/page/PageInfoBT.java |   20 ++++++++++++++++++++
 1 files changed, 20 insertions(+), 0 deletions(-)

diff --git a/guns-core/src/main/java/com/stylefeng/guns/core/page/PageInfoBT.java b/guns-core/src/main/java/com/stylefeng/guns/core/page/PageInfoBT.java
index 6230e13..7e79e05 100644
--- a/guns-core/src/main/java/com/stylefeng/guns/core/page/PageInfoBT.java
+++ b/guns-core/src/main/java/com/stylefeng/guns/core/page/PageInfoBT.java
@@ -17,6 +17,10 @@
 
     // 总数
     private long total;
+    
+    private int size;
+    
+    private int current;
 
     public PageInfoBT(Page<T> page) {
         this.rows = page.getRecords();
@@ -38,4 +42,20 @@
     public void setTotal(long total) {
         this.total = total;
     }
+    
+    public int getSize() {
+        return size;
+    }
+    
+    public void setSize(int size) {
+        this.size = size;
+    }
+    
+    public int getCurrent() {
+        return current;
+    }
+    
+    public void setCurrent(int current) {
+        this.current = current;
+    }
 }

--
Gitblit v1.7.1