[测评系统]--测评系统核心代码库
zhijie
2023-12-11 b7988d5538046c78492d52ee2c1300169b0bbcad
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
42
43
44
45
46
47
package com.ots.framework.web.page;
import java.io.Serializable;
import java.util.List;
 
public class TableDataInfo implements Serializable {
    private static final long serialVersionUID = 1L;
    
    private long total;
    
    private List<?> rows;
    
    private int code;
    
    private int msg;
    
    public TableDataInfo() {
    }
    
    public TableDataInfo(List<?> list, int total) {
        this.rows = list;
        this.total = total;
    }
    public long getTotal() {
        return total;
    }
    public void setTotal(long total) {
        this.total = total;
    }
    public List<?> getRows() {
        return rows;
    }
    public void setRows(List<?> rows) {
        this.rows = rows;
    }
    public int getCode() {
        return code;
    }
    public void setCode(int code) {
        this.code = code;
    }
    public int getMsg() {
        return msg;
    }
    public void setMsg(int msg) {
        this.msg = msg;
    }
}