dengzedong
4 天以前 730d1944e3a13c517c77df2b0712df05645a38dd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package com.iailab.framework.common.pojo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
 
@Schema(description = "分页结果")
@Data
public final class PageResult<T> implements Serializable {
 
    @Schema(description = "数据", requiredMode = Schema.RequiredMode.REQUIRED)
    private List<T> list;
 
    @Schema(description = "总量", requiredMode = Schema.RequiredMode.REQUIRED)
    private Long total;
 
    public PageResult() {
    }
 
    public PageResult(List<T> list, Long total) {
        this.list = list;
        this.total = total;
    }
 
    public PageResult(Long total) {
        this.list = new ArrayList<>();
        this.total = total;
    }
 
    public static <T> PageResult<T> empty() {
        return new PageResult<>(0L);
    }
 
    public static <T> PageResult<T> empty(Long total) {
        return new PageResult<>(total);
    }
 
}