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 c76c0dfd
authored
Jul 31, 2023
by
王力
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev_layer0731' into 'develop'
Dev layer0731 See merge request !304
2 parents
a6d7897f
f1a4f6e5
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
69 additions
and
5 deletions
project-order/src/main/java/com/dituhui/pea/order/controller/BusinessLayerController.java
project-order/src/main/java/com/dituhui/pea/order/dao/MapLayerCustomizeSkillMPDao.java
project-order/src/main/java/com/dituhui/pea/order/entity/MapLayerCustomize.java
project-order/src/main/java/com/dituhui/pea/order/entity/MapLayerCustomizeSkill.java
project-order/src/main/java/com/dituhui/pea/order/controller/BusinessLayerController.java
View file @
c76c0df
...
...
@@ -10,38 +10,76 @@ import org.springframework.web.bind.annotation.RequestMapping;
@RequestMapping
(
"/pea-order"
)
public
class
BusinessLayerController
{
/**
* 获取通用图层
*
* @return
*/
@GetMapping
(
"/business/layer/universal"
)
public
Result
<?>
businessLayerUniversal
()
{
// 通用图层
return
null
;
}
/**
* 获取自定义图层列表
*
* @param levelType 组织层级类型
* @param levelValue 组织层级值
* @param page 分页-页数
* @param size 分页-页大小
* @return
*/
@GetMapping
(
"/business/layer/custom/list"
)
public
Result
<?>
businessCustomLayers
()
{
public
Result
<?>
businessCustomLayers
(
String
levelType
,
String
levelValue
,
long
page
,
long
size
)
{
// 自定义图层列表
return
null
;
}
/**
* 获取自定义图层详情
*
* @param layerId 图层ID
* @return
*/
@GetMapping
(
"/business/layer/custom/detail"
)
public
Result
<?>
businessCustomLayer
()
{
public
Result
<?>
businessCustomLayer
(
String
layerId
)
{
// 自定义图层详情
return
null
;
}
/**
* 新增自定义图层
*
* @return
*/
@PostMapping
(
"/business/layer/custom/add"
)
public
Result
<?>
businessCustomLayerAdd
()
{
// 自定义图层新增
return
null
;
}
/**
* 修改自定义图层
*
* @param layerId 图层ID
* @return
*/
@PostMapping
(
"/business/layer/custom/update"
)
public
Result
<?>
businessCustomLayerUpdate
()
{
public
Result
<?>
businessCustomLayerUpdate
(
String
layerId
)
{
// 自定义图层修改
return
null
;
}
/**
* 删除自定义图层
*
* @param layerId 图层ID
* @return
*/
@PostMapping
(
"/business/layer/custom/remove"
)
public
Result
<?>
businessCustomLayerRemove
()
{
public
Result
<?>
businessCustomLayerRemove
(
String
layerId
)
{
// 自定义图层删除
return
null
;
}
...
...
project-order/src/main/java/com/dituhui/pea/order/dao/MapLayerCustomizeSkillMPDao.java
0 → 100644
View file @
c76c0df
package
com
.
dituhui
.
pea
.
order
.
dao
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.dituhui.pea.order.entity.MapLayerCustomizeSkill
;
import
org.apache.ibatis.annotations.Mapper
;
@Mapper
public
interface
MapLayerCustomizeSkillMPDao
extends
BaseMapper
<
MapLayerCustomizeSkill
>
{
}
project-order/src/main/java/com/dituhui/pea/order/entity/MapLayerCustomize.java
View file @
c76c0df
...
...
@@ -11,7 +11,7 @@ public class MapLayerCustomize {
private
String
layerId
;
private
String
layer
;
private
String
layerDescribe
;
private
String
disabled
;
private
Integer
status
;
private
String
memo
;
private
LocalDateTime
createTime
;
private
LocalDateTime
updateTime
;
...
...
project-order/src/main/java/com/dituhui/pea/order/entity/MapLayerCustomizeSkill.java
0 → 100644
View file @
c76c0df
package
com
.
dituhui
.
pea
.
order
.
entity
;
import
lombok.Data
;
import
java.time.LocalDateTime
;
@Data
public
class
MapLayerCustomizeSkill
{
private
Integer
id
;
private
String
layerId
;
private
String
skillCode
;
private
String
description
;
private
Integer
status
;
private
String
memo
;
private
LocalDateTime
createTime
;
private
LocalDateTime
updateTime
;
}
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