package com.yanzuoguang.util.table; /** * 列头,A.B , A.C * @author 颜佐光 */ public class TableHeadItem { /** * 最高级别 */ private String name; /** * 路径 */ private String path; /** * 第几行 */ private int row; /** * 合并多少行 */ private int rowCell; /** * 第几列 */ private int column; /** * 合并多少列 */ private int columnCell; /** * 是否属于数据列 */ private boolean dataColumn; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getPath() { return path; } public void setPath(String path) { this.path = path; } public int getRow() { return row; } public void setRow(int row) { this.row = row; } public int getRowCell() { return rowCell; } public void setRowCell(int rowCell) { this.rowCell = rowCell; } public int getColumn() { return column; } public void setColumn(int column) { this.column = column; } public int getColumnCell() { return columnCell; } public void setColumnCell(int columnCell) { this.columnCell = columnCell; } public boolean isDataColumn() { return this.dataColumn; } public void setDataColumn(boolean dataColumn) { this.dataColumn = dataColumn; } }