| | |
| | | public String[] combo() default {};
|
| | |
|
| | | /**
|
| | | * 是否需要纵向合并单元格,应对需求:含有list集合单元格)
|
| | | */
|
| | | public boolean needMerge() default false;
|
| | |
|
| | | /**
|
| | | * 是否导出数据,应对需求:有时我们需要导出一份模板,这是标题需要但内容需要用户手工填写.
|
| | | */
|
| | | public boolean isExport() default true;
|
| | |
| | | * 是否自动统计数据,在最后追加一行统计数据总和
|
| | | */
|
| | | public boolean isStatistics() default false;
|
| | | |
| | |
|
| | | /**
|
| | | * 导出类型(0数字 1字符串)
|
| | | * 导出类型(0数字 1字符串 2图片)
|
| | | */
|
| | | public ColumnType cellType() default ColumnType.STRING;
|
| | |
|
| | | /**
|
| | | * 导出字体颜色
|
| | | * 导出列头背景色
|
| | | */
|
| | | public IndexedColors headerBackgroundColor() default IndexedColors.GREY_50_PERCENT;
|
| | |
|
| | | /**
|
| | | * 导出列头字体颜色
|
| | | */
|
| | | public IndexedColors headerColor() default IndexedColors.WHITE;
|
| | |
|
| | | /**
|
| | | * 导出单元格背景色
|
| | | */
|
| | | public IndexedColors backgroundColor() default IndexedColors.WHITE;
|
| | |
|
| | | /**
|
| | | * 导出单元格字体颜色
|
| | | */
|
| | | public IndexedColors color() default IndexedColors.BLACK;
|
| | |
|