Commit 0004b5a5 authored by yanzg's avatar yanzg

执行时间

parent 63cf9379
...@@ -39,7 +39,7 @@ public class ExportData { ...@@ -39,7 +39,7 @@ public class ExportData {
public static final short ROW_HEIGHT = 30; public static final short ROW_HEIGHT = 30;
@ApiModelProperty(notes = "列默认宽度") @ApiModelProperty(notes = "列默认宽度")
public static final short COLUMN_WIDTH = 0; public static final short COLUMN_WIDTH = 100;
/** /**
* 服务器保存路径 * 服务器保存路径
*/ */
...@@ -91,6 +91,12 @@ public class ExportData { ...@@ -91,6 +91,12 @@ public class ExportData {
@ApiModelProperty(notes = "行高度") @ApiModelProperty(notes = "行高度")
private short rowHeight; private short rowHeight;
/**
* 自动换行
*/
@ApiModelProperty(notes = "自动换行")
private boolean line;
/** /**
* 包含列 * 包含列
*/ */
...@@ -181,6 +187,14 @@ public class ExportData { ...@@ -181,6 +187,14 @@ public class ExportData {
this.rowHeight = rowHeight; this.rowHeight = rowHeight;
} }
public boolean isLine() {
return line;
}
public void setLine(boolean line) {
this.line = line;
}
public List<ExportColumn> getColumns() { public List<ExportColumn> getColumns() {
return columns; return columns;
} }
......
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