Pu Zhibing
2025-01-01 03bab7e7f1c86cc27ffa984d61c7bd2d9bd3a373
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;
    }
}