We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
触发场景描述
复杂表头导出,我无意的设置了ExcelProperty的index从1开始 例如: @ColumnWidth(25) @ExcelProperty(value = {"订单统计", "年月"}, index = 1) private String yearMonth;
@ColumnWidth(25) @ExcelProperty(value = {"订单统计", "订单数量"}, index = 2) private Integer orderNum;
导致复杂表头没有跨列显示,只显示在最后一列,将index改为0开始后恢复正常
提示的异常或者没有达到的效果
The text was updated successfully, but these errors were encountered:
版本使用的最新版2.2.3
Sorry, something went wrong.
* 修复复杂表头不是index=0开始 合并异常的bug #1322
index=0
0de3e57
84998e9
非常感谢您的意见,已经在最新版修复。
zhuangjiaju
No branches or pull requests
触发场景描述
复杂表头导出,我无意的设置了ExcelProperty的index从1开始
例如:
@ColumnWidth(25)
@ExcelProperty(value = {"订单统计", "年月"}, index = 1)
private String yearMonth;
@ColumnWidth(25)
@ExcelProperty(value = {"订单统计", "订单数量"}, index = 2)
private Integer orderNum;
导致复杂表头没有跨列显示,只显示在最后一列,将index改为0开始后恢复正常
提示的异常或者没有达到的效果
The text was updated successfully, but these errors were encountered: