package com.vci.client.portal.utility; import java.util.HashMap; import java.util.List; import java.util.Map; public class DataGridModelModifer { private int total; private List cols; private String idField; private int pageSize; private List pageList; private List> rows; private String title; private String sheetId; private String typeName; private Map toolbar = new HashMap(); public int getTotal() { return total; } public void setTotal(int total) { this.total = total; } public List getCols() { return cols; } public void setCols(List cols) { this.cols = cols; } 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 List> getRows() { return rows; } public void setRows(List> rows) { this.rows = rows; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } 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; } }