Commit b53bbf1a authored by yanzg's avatar yanzg

EXCEL自定义列处理

parent e2c8107b
...@@ -222,11 +222,11 @@ public class ExcelConsole<T extends Object> implements DbRow<T> { ...@@ -222,11 +222,11 @@ public class ExcelConsole<T extends Object> implements DbRow<T> {
int columnLength = this.config.getColumns().size() - 1; int columnLength = this.config.getColumns().size() - 1;
writeTitle(rowIndex++, this.config.getTitle(), this.config.getTitleHeight(), columnLength); writeTitle(rowIndex++, this.config.getTitle(), this.config.getTitleHeight(), columnLength);
writeTitle(rowIndex++, this.config.getSubTitle(), this.config.getSubTitleHeight(), columnLength); writeTitle(rowIndex++, this.config.getSubTitle(), this.config.getSubTitleHeight(), columnLength);
writeHead(head);
rowIndex += head.getTotalRow();
// 写入自定义行 // 写入自定义行
writeDefineRow(this.config.getStartRows()); writeDefineRow(this.config.getStartRows());
// 写入头部信息
writeHead(head);
rowIndex += head.getTotalRow();
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment