Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
Y
yzg-util
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
YZG
yzg-util
Commits
0004b5a5
Commit
0004b5a5
authored
Feb 22, 2023
by
yanzg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
执行时间
parent
63cf9379
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
94 additions
and
83 deletions
+94
-83
ExcelConsole.java
...-db/src/main/java/com/yanzuoguang/excel/ExcelConsole.java
+79
-82
ExportData.java
...il-db/src/main/java/com/yanzuoguang/excel/ExportData.java
+15
-1
No files found.
yzg-util-db/src/main/java/com/yanzuoguang/excel/ExcelConsole.java
View file @
0004b5a5
This diff is collapsed.
Click to expand it.
yzg-util-db/src/main/java/com/yanzuoguang/excel/ExportData.java
View file @
0004b5a5
...
...
@@ -39,7 +39,7 @@ public class ExportData {
public
static
final
short
ROW_HEIGHT
=
30
;
@ApiModelProperty
(
notes
=
"列默认宽度"
)
public
static
final
short
COLUMN_WIDTH
=
0
;
public
static
final
short
COLUMN_WIDTH
=
10
0
;
/**
* 服务器保存路径
*/
...
...
@@ -91,6 +91,12 @@ public class ExportData {
@ApiModelProperty
(
notes
=
"行高度"
)
private
short
rowHeight
;
/**
* 自动换行
*/
@ApiModelProperty
(
notes
=
"自动换行"
)
private
boolean
line
;
/**
* 包含列
*/
...
...
@@ -181,6 +187,14 @@ public class ExportData {
this
.
rowHeight
=
rowHeight
;
}
public
boolean
isLine
()
{
return
line
;
}
public
void
setLine
(
boolean
line
)
{
this
.
line
=
line
;
}
public
List
<
ExportColumn
>
getColumns
()
{
return
columns
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment