田源
2024-03-07 4b4083fd73dc27ece42f4835483565eef0e4f608
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
package com.vci.client.portal.utility;
 
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
public class DataGridModel {
 
    private int total;
    private List<RowModel> rows;
    private String idField;
    private int pageSize;
    private List<Integer> pageList;
    private List<Map<String, String>> cols;
    private String title;
    private String sheetId;
    private String typeName;
    private Map<String, Object> toolbar = new HashMap<String, Object>();
    private Map<String, Object> commandParameter = new HashMap<String, Object>();
    
    public int getTotal() {
        return total;
    }
    public void setTotal(int total) {
        this.total = total;
    }
    public List<RowModel> getRows() {
        return rows;
    }
    public void setRows(List<RowModel> rows) {
        this.rows = rows;
    }
    public String getIdField() {
        return idField;
    }
    public void setIdField(String idField) {
        this.idField = idField;
    }
    public int getPageSize() {
        return pageSize;
    }
    public void setPageSize(int pageSize) {
        this.pageSize = pageSize;
    }
    public List<Integer> getPageList() {
        return pageList;
    }
    public void setPageList(List<Integer> pageList) {
        this.pageList = pageList;
    }
    public String getTitle() {
        return title;
    }
    public void setTitle(String title) {
        this.title = title;
    }
    public List<Map<String, String>> getCols() {
        return cols;
    }
    public void setCols(List<Map<String, String>> cols) {
        this.cols = cols;
    }
    public String getSheetId() {
        return sheetId;
    }
    public void setSheetId(String sheetId) {
        this.sheetId = sheetId;
    }
    public String getTypeName() {
        return typeName;
    }
    public void setTypeName(String typeName) {
        this.typeName = typeName;
    }
    public Map<String, Object> getToolbar() {
        return toolbar;
    }
    public void setToolbar(Map<String, Object> toolbar) {
        this.toolbar = toolbar;
    }
    public Map<String, Object> getCommandParameter() {
        return commandParameter;
    }
    public void setCommandParameter(Map<String, Object> commandParameter) {
        this.commandParameter = commandParameter;
    }
}