nilupeng
2022-01-30 fa67d4417ec6949183038f99dff517f5e3c7cda6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.runt.open.mvvm.data;
 
import java.util.ArrayList;
 
/**
 * Created by Administrator on 2021/10/28 0028.
 */
public class BasePageResult<T> extends BaseApiResult<String>{
    public int pages;
    public int total;
    public int pageNum;
    public ArrayList<T> rows;
 
    @Override
    public String toString() {
        return "PageBean{" +
                ", total=" + total +
                ", rows=" + rows +
                '}';
    }
}