easyexcel注解样式无效_easyexcel注解

11个注解

@ExcelProperty

@ColumnWith 列宽

@ContentFontStyle 文本字体样式

@ContentLoopMerge 文本合并

@ContentRowHeight 文本行高度

@ContentStyle 文本样式

@HeadFontStyle 标题字体样式

@HeadRowHeight 标题高度

@HeadStyle 标题样式

@ExcelIgnore 忽略项

@ExcelIgnoreUnannotated 忽略未注解

字段注解

类注解

@ColumnWith(列宽)

@ColumnWidth(全局列宽)

@ExcelProperty(字段配置)

@HeadFontStyle(头样式)

@HeadRowHeight(标题高度)

@ContentFontStyle(内容字体样式)

@ContentRowHeight(内容高度)

@ExcelProperty

必要的一个注解,注解中有三个参数value,index,converter分别代表列明,列序号,数据转换方式

value和index只能二选一,通常不用设置converter

1.value 通过标题文本对应

2.index 通过文本行号对应

3.converter 转换器,通常入库和出库转换使用,如性别入库0和1,出库男和女

最佳实践

public class Im

你可能感兴趣的:(easyexcel注解样式无效)