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;
|
}
|
}
|