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
addc0931
Commit
addc0931
authored
Mar 26, 2021
by
linruibiao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
整理url
parent
42d6ebf4
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
11 additions
and
11 deletions
+11
-11
DeptController.java
...ain/java/com/syc/slm/slmbi/controller/DeptController.java
+2
-2
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
PositionController.java
...java/com/syc/slm/slmbi/controller/PositionController.java
+2
-2
UserController.java
...ain/java/com/syc/slm/slmbi/controller/UserController.java
+2
-2
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 @
addc0931
...
...
@@ -18,7 +18,7 @@ import java.util.List;
* @author : lin
* @date : 2021-03-25 18:39
**/
@RequestMapping
(
"/
bi/dept
"
)
@RequestMapping
(
"/
depts
"
)
@RestController
@Api
(
value
=
"部门信息接口"
,
description
=
"部门信息接口"
)
public
class
DeptController
{
...
...
@@ -28,7 +28,7 @@ public class DeptController {
@GetMapping
(
"/select_dept_list"
)
@GetMapping
@ApiOperation
(
"部门查询"
)
@ApiImplicitParam
(
name
=
"deptName"
,
value
=
"部门名称"
)
public
R
<
List
<
DeptVo
>>
selectDeptList
(
@RequestParam
(
value
=
"deptName"
,
required
=
false
)
String
deptName
){
...
...
src/main/java/com/syc/slm/slmbi/controller/InstrumentPanelConfigController.java
View file @
addc0931
...
...
@@ -18,7 +18,7 @@ import org.springframework.web.bind.annotation.*;
* @date : 2021-03-25 19:09
**/
@RequestMapping
(
"/
bi/instrument_panel_config
"
)
@RequestMapping
(
"/
panel/configs
"
)
@RestController
@Api
(
value
=
"仪表板样式以及数据配置"
,
description
=
"仪表板样式以及数据配置"
)
public
class
InstrumentPanelConfigController
{
...
...
src/main/java/com/syc/slm/slmbi/controller/InstrumentPanelController.java
View file @
addc0931
...
...
@@ -25,7 +25,7 @@ import java.util.List;
* @date : 2021-03-25 15:10
**/
@RestController
@RequestMapping
(
"/
bi/
instrument_panel"
)
@RequestMapping
(
"/instrument_panel"
)
@Api
(
value
=
"仪表板"
,
description
=
"仪表板配置接口"
)
public
class
InstrumentPanelController
{
...
...
src/main/java/com/syc/slm/slmbi/controller/InstrumentPanelGroupController.java
View file @
addc0931
...
...
@@ -20,7 +20,7 @@ import java.util.List;
* @date : 2021-03-25 15:07
**/
@RestController
@RequestMapping
(
"/
bi/
instrumentPanelGroup"
)
@RequestMapping
(
"/instrumentPanelGroup"
)
@Api
(
value
=
"仪表板分组"
,
description
=
"仪表板分组接口"
)
public
class
InstrumentPanelGroupController
{
...
...
src/main/java/com/syc/slm/slmbi/controller/InstrumentPanelPermissionController.java
View file @
addc0931
...
...
@@ -21,7 +21,7 @@ import java.util.List;
**/
@Api
(
value
=
"仪表板权限控制"
,
description
=
"仪表板权限控制"
)
@RestController
@RequestMapping
(
"/
bi/
permission"
)
@RequestMapping
(
"/permission"
)
public
class
InstrumentPanelPermissionController
{
@Autowired
...
...
src/main/java/com/syc/slm/slmbi/controller/PositionController.java
View file @
addc0931
...
...
@@ -20,13 +20,13 @@ import java.util.List;
**/
@Api
(
value
=
"职位查询列表"
,
description
=
"职位查询列表"
)
@RestController
@RequestMapping
(
"/
bi/position
"
)
@RequestMapping
(
"/
positions
"
)
public
class
PositionController
{
@Autowired
private
PositionService
positionWorkService
;
@GetMapping
(
"/positions"
)
@GetMapping
@ApiOperation
(
"职位查询列表"
)
@ApiImplicitParam
(
name
=
"positionName"
,
value
=
"职位名称"
)
public
R
<
List
<
PositionVo
>>
selectPositionList
(
@RequestParam
(
value
=
"positionName"
,
required
=
false
)
String
positionName
){
...
...
src/main/java/com/syc/slm/slmbi/controller/UserController.java
View file @
addc0931
...
...
@@ -20,13 +20,13 @@ import java.util.List;
**/
@Api
(
value
=
"用户信息"
,
description
=
"用户信息接口"
)
@RestController
@RequestMapping
(
"/
bi/user
"
)
@RequestMapping
(
"/
users
"
)
public
class
UserController
{
@Autowired
private
UserService
userService
;
@GetMapping
(
"select_user_list"
)
@GetMapping
@ApiOperation
(
"用户查询"
)
@ApiImplicitParam
(
name
=
"userName"
,
value
=
"用户名称"
)
public
R
<
List
<
UserVo
>>
selectUserList
(
@RequestParam
(
value
=
"userName"
,
required
=
false
)
String
userName
){
...
...
src/main/java/com/syc/slm/slmbi/controller/VariableController.java
View file @
addc0931
...
...
@@ -26,7 +26,7 @@ import java.util.List;
* @date : 2021-03-25 18:45
**/
@RestController
@RequestMapping
(
"/
bi/variable
"
)
@RequestMapping
(
"/
variables
"
)
@Api
(
description
=
"变量控件"
)
public
class
VariableController
{
@Autowired
...
...
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