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
ece85e34
Commit
ece85e34
authored
Mar 30, 2021
by
linruibiao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
整改接口
parent
13152cd7
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
6 deletions
+3
-6
InstrumentPanelConfigController.java
...slm/slmbi/controller/InstrumentPanelConfigController.java
+1
-1
InstrumentPanelGroupController.java
.../slm/slmbi/controller/InstrumentPanelGroupController.java
+0
-5
InstrumentPanelConfigDTO.java
.../java/com/syc/slm/slmbi/dto/InstrumentPanelConfigDTO.java
+2
-0
No files found.
src/main/java/com/syc/slm/slmbi/controller/InstrumentPanelConfigController.java
View file @
ece85e34
...
...
@@ -39,7 +39,7 @@ public class InstrumentPanelConfigController {
}
@GetMapping
(
"/{panelId}"
)
@ApiOperation
(
"根据仪表板id获取仪表板配置"
)
@ApiOperation
(
"根据仪表板id获取仪表板配置
,并且获取到组件
"
)
@ApiImplicitParam
(
name
=
"panelId"
,
value
=
"仪表板id"
)
public
R
<
InstrumentPanelConfigVo
>
getConfigByPanelId
(
@PathVariable
(
"panelId"
)
String
panelId
)
{
...
...
src/main/java/com/syc/slm/slmbi/controller/InstrumentPanelGroupController.java
View file @
ece85e34
...
...
@@ -46,11 +46,6 @@ public class InstrumentPanelGroupController {
return
R
.
ok
(
instrumentPanelGroupService
.
children
(
groupId
,
name
));
}
@GetMapping
(
"/selectInstrumentPanelGroups"
)
@ApiOperation
(
"获取所有的仪表板分组以及分组下的仪表板以及仪表板下的组件"
)
public
R
<
List
<
InstrumentPanelGroupVo
>>
selectInstrumentPanelGroups
()
{
return
R
.
ok
(
instrumentPanelGroupService
.
selectGroupList
());
}
@PostMapping
@ApiOperation
(
"保存仪表板分组"
)
...
...
src/main/java/com/syc/slm/slmbi/dto/InstrumentPanelConfigDTO.java
View file @
ece85e34
...
...
@@ -22,5 +22,7 @@ public class InstrumentPanelConfigDTO {
private
String
configDetails
;
@ApiModelProperty
(
value
=
"访问权限"
,
required
=
true
)
private
InstrumentPanelPermissionDTO
visitPermission
;
@ApiModelProperty
(
value
=
"组件结构"
,
required
=
true
)
private
String
assembly
;
}
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