Runt
2022-03-01 cc5e1cbab3de2c497ffb12d4fc49dd331ba20a5c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.auto.lyric.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 +
                '}';
    }
}