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
public class DataModel { @ExcelProperty(index = 0) private String column1; @ExcelProperty(index = 2) private String column3; // getters and setters }
上面的bean导出时,会有1个空列,因为index =1 缺失。是否可以将index的值处理为排序条件,只要保证column1 可以排在 column2前面即可,哪怕index分别是 11,34 这样在处理多列导出文件时会更方便
The text was updated successfully, but these errors were encountered:
No branches or pull requests
建议描述
上面的bean导出时,会有1个空列,因为index =1 缺失。是否可以将index的值处理为排序条件,只要保证column1 可以排在 column2前面即可,哪怕index分别是 11,34 这样在处理多列导出文件时会更方便
The text was updated successfully, but these errors were encountered: