easyexcel
easyexcel copied to clipboard
模板填充,如何不使用实体类而是List<String>
应该跟文档中不创建对象的写类似吧
EasyExcel.write(filePath).sheet(tableName).head(head()).doWrite(data()); private List<List<String>> head() {...} private List<List<String>> data() {...}