Commit 2e5cc102 authored by yanzg's avatar yanzg

执行时间

parent 6bc89b41
...@@ -338,7 +338,7 @@ public class ExcelConsole<T extends Object> implements DbRow<T> { ...@@ -338,7 +338,7 @@ public class ExcelConsole<T extends Object> implements DbRow<T> {
int columnPos = 0; int columnPos = 0;
for (ExportColumn column : this.config.getColumns()) { for (ExportColumn column : this.config.getColumns()) {
String columnName = column.getName(); String columnName = column.getName();
String value = StringHelper.getFirst(StringHelper.toString(rowHandle.get(t, columnName))); String value = StringHelper.getFirst(rowHandle.get(t, columnName));
// 列宽度 // 列宽度
int columnWidth = getUnit(column.getWidth() - 10); int columnWidth = getUnit(column.getWidth() - 10);
// 中文长度 // 中文长度
......
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