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 rows; private String idField; private int pageSize; private List pageList; private List> cols; private String title; private String sheetId; private String typeName; private Map toolbar = new HashMap(); private Map commandParameter = new HashMap(); public int getTotal() { return total; } public void setTotal(int total) { this.total = total; } public List getRows() { return rows; } public void setRows(List 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 getPageList() { return pageList; } public void setPageList(List pageList) { this.pageList = pageList; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public List> getCols() { return cols; } public void setCols(List> 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 getToolbar() { return toolbar; } public void setToolbar(Map toolbar) { this.toolbar = toolbar; } public Map getCommandParameter() { return commandParameter; } public void setCommandParameter(Map commandParameter) { this.commandParameter = commandParameter; } }