Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
slm-bi
Project
Project
Details
Activity
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
林锐标
slm-bi
Commits
29540bcf
Commit
29540bcf
authored
Mar 30, 2021
by
linruibiao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
整改接口
parent
a731a885
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
0 deletions
+30
-0
PanelGroupVo.java
src/main/java/com/syc/slm/slmbi/vo/PanelGroupVo.java
+30
-0
No files found.
src/main/java/com/syc/slm/slmbi/vo/PanelGroupVo.java
0 → 100644
View file @
29540bcf
package
com
.
syc
.
slm
.
slmbi
.
vo
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
/**
* slm-bi
* 仪表板分组tree vo
*
* @author : lin
* @date : 2021-03-30 09:36
**/
@Data
@ApiModel
(
value
=
"仪表板分组tree vo"
)
@EqualsAndHashCode
(
callSuper
=
false
)
public
class
PanelGroupVo
{
@ApiModelProperty
(
value
=
"分组或者仪表板主键"
)
private
Integer
id
;
@ApiModelProperty
(
value
=
"父级id"
)
private
String
parentId
;
@ApiModelProperty
(
value
=
"分组名称"
)
private
String
groupName
;
@ApiModelProperty
(
value
=
"仪表板名称"
)
private
String
panelName
;
@ApiModelProperty
(
value
=
"1 分组,2 仪表板"
)
private
Integer
type
;
}
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