Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
yangxiujun
/
paidan_demo
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 9e891550
authored
Jul 31, 2023
by
wangli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改,增加注释和参数
1 parent
747eceb3
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
4 deletions
project-order/src/main/java/com/dituhui/pea/order/controller/BusinessLayerController.java
project-order/src/main/java/com/dituhui/pea/order/controller/BusinessLayerController.java
View file @
9e89155
...
@@ -10,38 +10,76 @@ import org.springframework.web.bind.annotation.RequestMapping;
...
@@ -10,38 +10,76 @@ import org.springframework.web.bind.annotation.RequestMapping;
@RequestMapping
(
"/pea-order"
)
@RequestMapping
(
"/pea-order"
)
public
class
BusinessLayerController
{
public
class
BusinessLayerController
{
/**
* 获取通用图层
*
* @return
*/
@GetMapping
(
"/business/layer/universal"
)
@GetMapping
(
"/business/layer/universal"
)
public
Result
<?>
businessLayerUniversal
()
{
public
Result
<?>
businessLayerUniversal
()
{
// 通用图层
// 通用图层
return
null
;
return
null
;
}
}
/**
* 获取自定义图层列表
*
* @param levelType 组织层级类型
* @param levelValue 组织层级值
* @param page 分页-页数
* @param size 分页-页大小
* @return
*/
@GetMapping
(
"/business/layer/custom/list"
)
@GetMapping
(
"/business/layer/custom/list"
)
public
Result
<?>
businessCustomLayers
()
{
public
Result
<?>
businessCustomLayers
(
String
levelType
,
String
levelValue
,
long
page
,
long
size
)
{
// 自定义图层列表
// 自定义图层列表
return
null
;
return
null
;
}
}
/**
* 获取自定义图层详情
*
* @param layerId 图层ID
* @return
*/
@GetMapping
(
"/business/layer/custom/detail"
)
@GetMapping
(
"/business/layer/custom/detail"
)
public
Result
<?>
businessCustomLayer
()
{
public
Result
<?>
businessCustomLayer
(
String
layerId
)
{
// 自定义图层详情
// 自定义图层详情
return
null
;
return
null
;
}
}
/**
* 新增自定义图层
*
* @return
*/
@PostMapping
(
"/business/layer/custom/add"
)
@PostMapping
(
"/business/layer/custom/add"
)
public
Result
<?>
businessCustomLayerAdd
()
{
public
Result
<?>
businessCustomLayerAdd
()
{
// 自定义图层新增
// 自定义图层新增
return
null
;
return
null
;
}
}
/**
* 修改自定义图层
*
* @param layerId 图层ID
* @return
*/
@PostMapping
(
"/business/layer/custom/update"
)
@PostMapping
(
"/business/layer/custom/update"
)
public
Result
<?>
businessCustomLayerUpdate
()
{
public
Result
<?>
businessCustomLayerUpdate
(
String
layerId
)
{
// 自定义图层修改
// 自定义图层修改
return
null
;
return
null
;
}
}
/**
* 删除自定义图层
*
* @param layerId 图层ID
* @return
*/
@PostMapping
(
"/business/layer/custom/remove"
)
@PostMapping
(
"/business/layer/custom/remove"
)
public
Result
<?>
businessCustomLayerRemove
()
{
public
Result
<?>
businessCustomLayerRemove
(
String
layerId
)
{
// 自定义图层删除
// 自定义图层删除
return
null
;
return
null
;
}
}
...
...
Write
Preview
Markdown
is supported
Attach a file
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 post a comment