package com.alibaba.excel.metadata; import java.util.List; /** * Sheet参数 * * @author jipengfei */ public class Sheet { /** * 表头行数 */ private int headLineMun; /** * sheet序号 */ private int sheetNo; /** * 名称 可不填 */ private String sheetName; /** * 对用的表头模型 */ private Class clazz; /** * 对用的表头层级树,用于clazz不确定时候,动态生成表头 */ private List> head; /** * */ private TableStyle tableStyle; public Sheet(int sheetNo) { this.sheetNo = sheetNo; } public Sheet(int sheetNo, int headLineMun) { this.sheetNo = sheetNo; this.headLineMun = headLineMun; } public Sheet(int sheetNo, int headLineMun, Class clazz) { this.sheetNo = sheetNo; this.headLineMun = headLineMun; this.clazz = clazz; } public Sheet(int sheetNo, int headLineMun, Class clazz, String sheetName, List> head) { this.sheetNo = sheetNo; this.clazz = clazz; this.headLineMun = headLineMun; this.sheetName = sheetName; this.head = head; } public List> getHead() { return head; } public void setHead(List> head) { this.head = head; } public Class getClazz() { return clazz; } public void setClazz(Class clazz) { this.clazz = clazz; if (headLineMun == 0) { this.headLineMun = 1; } } public int getHeadLineMun() { return headLineMun; } public void setHeadLineMun(int headLineMun) { this.headLineMun = headLineMun; } public int getSheetNo() { return sheetNo; } public void setSheetNo(int sheetNo) { this.sheetNo = sheetNo; } public String getSheetName() { return sheetName; } public void setSheetName(String sheetName) { this.sheetName = sheetName; } public TableStyle getTableStyle() { return tableStyle; } public void setTableStyle(TableStyle tableStyle) { this.tableStyle = tableStyle; } @Override public String toString() { return "Sheet{" + "headLineMun=" + headLineMun + ", sheetNo=" + sheetNo + ", sheetName='" + sheetName + '\'' + ", clazz=" + clazz + ", head=" + head + ", tableStyle=" + tableStyle + '}'; } }