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
3358589f
Commit
3358589f
authored
Mar 31, 2021
by
linruibiao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
整改接口
parent
63f3d46e
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
9 additions
and
9 deletions
+9
-9
DeptController.java
...ain/java/com/syc/slm/slmbi/controller/DeptController.java
+1
-1
InstrumentPanelConfigController.java
...slm/slmbi/controller/InstrumentPanelConfigController.java
+1
-1
InstrumentPanelController.java
...m/syc/slm/slmbi/controller/InstrumentPanelController.java
+1
-1
InstrumentPanelGroupController.java
.../slm/slmbi/controller/InstrumentPanelGroupController.java
+1
-1
InstrumentPanelPermissionController.java
...slmbi/controller/InstrumentPanelPermissionController.java
+1
-1
InstrumentPanelTreeController.java
...c/slm/slmbi/controller/InstrumentPanelTreeController.java
+1
-1
PositionController.java
...java/com/syc/slm/slmbi/controller/PositionController.java
+1
-1
UserController.java
...ain/java/com/syc/slm/slmbi/controller/UserController.java
+1
-1
VariableController.java
...java/com/syc/slm/slmbi/controller/VariableController.java
+1
-1
No files found.
src/main/java/com/syc/slm/slmbi/controller/DeptController.java
View file @
3358589f
...
@@ -21,7 +21,7 @@ import java.util.List;
...
@@ -21,7 +21,7 @@ import java.util.List;
**/
**/
@RequestMapping
(
"/{appId}/departments"
)
@RequestMapping
(
"/{appId}/departments"
)
@RestController
@RestController
@Api
(
value
=
"部门信息接口"
,
tags
=
"部门信息接口
TAG
"
)
@Api
(
value
=
"部门信息接口"
,
tags
=
"部门信息接口"
)
public
class
DeptController
{
public
class
DeptController
{
@Autowired
@Autowired
...
...
src/main/java/com/syc/slm/slmbi/controller/InstrumentPanelConfigController.java
View file @
3358589f
...
@@ -21,7 +21,7 @@ import org.springframework.web.bind.annotation.*;
...
@@ -21,7 +21,7 @@ import org.springframework.web.bind.annotation.*;
@RequestMapping
(
"/{appId}/panel-configs"
)
@RequestMapping
(
"/{appId}/panel-configs"
)
@RestController
@RestController
@Api
(
value
=
"仪表板样式以及数据配置"
,
tags
=
"仪表板样式以及数据配置
TAG
"
)
@Api
(
value
=
"仪表板样式以及数据配置"
,
tags
=
"仪表板样式以及数据配置"
)
public
class
InstrumentPanelConfigController
{
public
class
InstrumentPanelConfigController
{
@Autowired
@Autowired
...
...
src/main/java/com/syc/slm/slmbi/controller/InstrumentPanelController.java
View file @
3358589f
...
@@ -24,7 +24,7 @@ import java.util.List;
...
@@ -24,7 +24,7 @@ import java.util.List;
**/
**/
@RestController
@RestController
@RequestMapping
(
"/{appId}/panels"
)
@RequestMapping
(
"/{appId}/panels"
)
@Api
(
value
=
"仪表板配置接口"
,
tags
=
"仪表板配置接口
TAG
"
)
@Api
(
value
=
"仪表板配置接口"
,
tags
=
"仪表板配置接口"
)
public
class
InstrumentPanelController
{
public
class
InstrumentPanelController
{
@Autowired
@Autowired
...
...
src/main/java/com/syc/slm/slmbi/controller/InstrumentPanelGroupController.java
View file @
3358589f
...
@@ -19,7 +19,7 @@ import org.springframework.web.bind.annotation.*;
...
@@ -19,7 +19,7 @@ import org.springframework.web.bind.annotation.*;
**/
**/
@RestController
@RestController
@RequestMapping
(
"/{appId}/groups"
)
@RequestMapping
(
"/{appId}/groups"
)
@Api
(
value
=
"仪表板分组"
,
tags
=
"仪表板分组
TAG
"
)
@Api
(
value
=
"仪表板分组"
,
tags
=
"仪表板分组"
)
public
class
InstrumentPanelGroupController
{
public
class
InstrumentPanelGroupController
{
@Autowired
@Autowired
...
...
src/main/java/com/syc/slm/slmbi/controller/InstrumentPanelPermissionController.java
View file @
3358589f
...
@@ -20,7 +20,7 @@ import java.util.List;
...
@@ -20,7 +20,7 @@ import java.util.List;
* @author : lin
* @author : lin
* @date : 2021-03-25 18:54
* @date : 2021-03-25 18:54
**/
**/
@Api
(
value
=
"仪表板权限控制"
,
tags
=
"仪表板权限控制
TAG
"
)
@Api
(
value
=
"仪表板权限控制"
,
tags
=
"仪表板权限控制"
)
@RestController
@RestController
@RequestMapping
(
"/{appId}/panel-permissions"
)
@RequestMapping
(
"/{appId}/panel-permissions"
)
public
class
InstrumentPanelPermissionController
{
public
class
InstrumentPanelPermissionController
{
...
...
src/main/java/com/syc/slm/slmbi/controller/InstrumentPanelTreeController.java
View file @
3358589f
...
@@ -19,7 +19,7 @@ import java.util.List;
...
@@ -19,7 +19,7 @@ import java.util.List;
*/
*/
@RestController
@RestController
@RequestMapping
(
"/{appId}/panel-tree"
)
@RequestMapping
(
"/{appId}/panel-tree"
)
@Api
(
value
=
"仪表板树接口"
,
tags
=
"仪表板树接口
TAG
"
)
@Api
(
value
=
"仪表板树接口"
,
tags
=
"仪表板树接口"
)
public
class
InstrumentPanelTreeController
{
public
class
InstrumentPanelTreeController
{
@Autowired
@Autowired
private
InstrumentPanelGroupService
instrumentPanelGroupService
;
private
InstrumentPanelGroupService
instrumentPanelGroupService
;
...
...
src/main/java/com/syc/slm/slmbi/controller/PositionController.java
View file @
3358589f
...
@@ -19,7 +19,7 @@ import java.util.List;
...
@@ -19,7 +19,7 @@ import java.util.List;
* @author : lin
* @author : lin
* @date : 2021-03-25 17:26
* @date : 2021-03-25 17:26
**/
**/
@Api
(
value
=
"职位查询列表"
,
tags
=
"职位查询列表
TAG
"
)
@Api
(
value
=
"职位查询列表"
,
tags
=
"职位查询列表"
)
@RestController
@RestController
@RequestMapping
(
"/{appId}/positions"
)
@RequestMapping
(
"/{appId}/positions"
)
public
class
PositionController
{
public
class
PositionController
{
...
...
src/main/java/com/syc/slm/slmbi/controller/UserController.java
View file @
3358589f
...
@@ -19,7 +19,7 @@ import java.util.List;
...
@@ -19,7 +19,7 @@ import java.util.List;
* @author : lin
* @author : lin
* @date : 2021-03-25 18:45
* @date : 2021-03-25 18:45
**/
**/
@Api
(
value
=
"用户信息"
,
tags
=
"用户信息接口
TAG
"
)
@Api
(
value
=
"用户信息"
,
tags
=
"用户信息接口"
)
@RestController
@RestController
@RequestMapping
(
"/{appId}/users"
)
@RequestMapping
(
"/{appId}/users"
)
public
class
UserController
{
public
class
UserController
{
...
...
src/main/java/com/syc/slm/slmbi/controller/VariableController.java
View file @
3358589f
...
@@ -25,7 +25,7 @@ import java.util.Map;
...
@@ -25,7 +25,7 @@ import java.util.Map;
**/
**/
@RestController
@RestController
@RequestMapping
(
"/{appId}/variables"
)
@RequestMapping
(
"/{appId}/variables"
)
@Api
(
description
=
"变量控件"
,
tags
=
"变量控件
TAG
"
)
@Api
(
description
=
"变量控件"
,
tags
=
"变量控件"
)
public
class
VariableController
{
public
class
VariableController
{
@Autowired
@Autowired
private
VariableService
variableService
;
private
VariableService
variableService
;
...
...
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