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
5dd34078
Commit
5dd34078
authored
Oct 10, 2019
by
yanzg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
接口文档的支持
parent
ca89c8d4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
4 deletions
+24
-4
ExportColumn.java
...-db/src/main/java/com/yanzuoguang/excel/ExportColumn.java
+24
-4
No files found.
yzg-util-db/src/main/java/com/yanzuoguang/excel/ExportColumn.java
View file @
5dd34078
package
com
.
yanzuoguang
.
excel
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
/**
* 列设置
*
* @author 颜佐光
*/
@ApiModel
(
"合并列"
)
public
class
ExportColumn
{
/**
* 列标题,如 A.B
*/
@ApiModelProperty
(
notes
=
"列标题,如 A.B"
)
private
String
title
;
/**
* 数据单元格
*/
@ApiModelProperty
(
notes
=
"数据列名称"
)
private
String
name
;
/**
* 数据是否合并
*/
@ApiModelProperty
(
notes
=
"数据是否合并"
)
private
boolean
merger
;
/**
*
高度
*
合并組
*/
@ApiModelProperty
(
notes
=
"合并組"
)
private
String
megerGroup
;
/**
* 宽度
*/
@ApiModelProperty
(
notes
=
"列标题,如 A.B"
)
private
short
width
;
public
String
getTitle
()
{
...
...
@@ -50,10 +65,15 @@ public class ExportColumn {
this
.
merger
=
merger
;
}
public
short
getWidth
()
{
if
(
width
<
1
){
return
ExportData
.
COLUMN_WIDTH
;
public
String
getMegerGroup
()
{
return
megerGroup
;
}
public
void
setMegerGroup
(
String
megerGroup
)
{
this
.
megerGroup
=
megerGroup
;
}
public
short
getWidth
()
{
return
width
;
}
...
...
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