Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibzdict
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibzdict
提交
61ac2692
提交
61ac2692
编写于
8月 11, 2020
作者:
sq3536
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
数据字典局部刷新
上级
10a37506
变更
1
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
47 行增加
和
0 行删除
+47
-0
DictCoreResource.java
...java/cn/ibizlab/api/rest/extensions/DictCoreResource.java
+47
-0
未找到文件。
ibzdict-provider/ibzdict-provider-api/src/main/java/cn/ibizlab/api/rest/extensions/DictCoreResource.java
浏览文件 @
61ac2692
...
...
@@ -3,14 +3,18 @@ package cn.ibizlab.api.rest.extensions;
import
cn.ibizlab.api.dto.DictCatalogDTO
;
import
cn.ibizlab.api.mapping.DictCatalogMapping
;
import
cn.ibizlab.core.dict.domain.DictCatalog
;
import
cn.ibizlab.core.dict.domain.DictOption
;
import
cn.ibizlab.core.dict.extensions.service.DictCoreService
;
import
cn.ibizlab.core.dict.extensions.vo.Catalog
;
import
cn.ibizlab.core.dict.extensions.vo.CodeItem
;
import
cn.ibizlab.core.dict.extensions.vo.CodeList
;
import
cn.ibizlab.core.dict.extensions.vo.Option
;
import
cn.ibizlab.core.dict.filter.DictCatalogSearchContext
;
import
cn.ibizlab.core.dict.service.IDictCatalogService
;
import
cn.ibizlab.core.dict.service.IDictOptionService
;
import
cn.ibizlab.util.annotation.VersionCheck
;
import
com.alibaba.fastjson.JSONObject
;
import
com.baomidou.mybatisplus.core.toolkit.Wrappers
;
import
io.swagger.annotations.Api
;
import
io.swagger.annotations.ApiOperation
;
import
lombok.extern.slf4j.Slf4j
;
...
...
@@ -22,9 +26,14 @@ import org.springframework.http.HttpStatus;
import
org.springframework.http.ResponseEntity
;
import
org.springframework.security.access.prepost.PreAuthorize
;
import
org.springframework.transaction.annotation.Transactional
;
import
org.springframework.util.StringUtils
;
import
org.springframework.web.bind.annotation.*
;
import
java.sql.Wrapper
;
import
java.util.ArrayList
;
import
java.util.HashMap
;
import
java.util.List
;
import
java.util.Map
;
@Slf4j
@RestController
...
...
@@ -34,6 +43,9 @@ public class DictCoreResource {
@Autowired
private
IDictCatalogService
dictcatalogService
;
@Autowired
private
IDictOptionService
optionService
;
@Autowired
@Lazy
private
DictCatalogMapping
dictcatalogMapping
;
...
...
@@ -55,6 +67,23 @@ public class DictCoreResource {
return
ResponseEntity
.
status
(
HttpStatus
.
OK
).
body
(
catalog
.
getOptions
());
}
@RequestMapping
(
method
=
RequestMethod
.
POST
,
value
=
"/dictionarys/catalogs/{code}/options"
)
public
ResponseEntity
<
List
<
Option
>>
getOptions
(
@PathVariable
(
"code"
)
String
code
,
@RequestBody
List
<
String
>
values
)
{
List
<
Option
>
list
=
new
ArrayList
<>();
optionService
.
list
(
Wrappers
.<
DictOption
>
lambdaQuery
().
eq
(
DictOption:
:
getCatalog
,
code
).
in
(
DictOption:
:
getValue
,
values
).
orderByAsc
(
DictOption:
:
getShoworder
)).
forEach
(
item
->
{
Map
<
String
,
Object
>
extension
=
new
HashMap
<>();
if
(!
StringUtils
.
isEmpty
(
item
.
getExtension
()))
extension
=
JSONObject
.
parseObject
(
item
.
getExtension
(),
Map
.
class
);
list
.
add
(
new
Option
().
setValue
(
item
.
getValue
()).
setId
(
item
.
getValue
())
.
setDisabled
(((
item
.
getDisabled
()!=
null
&&
item
.
getDisabled
()==
1
)||(
item
.
getExpired
()!=
null
&&
item
.
getExpired
()==
1
))?
true
:
false
)
.
setFilter
(
item
.
getFilter
()).
setIconClass
(
item
.
getIconClass
()).
setLabel
(
item
.
getLabel
()).
setParent
(
item
.
getParent
()).
setExtension
(
extension
)
);
}
);
return
ResponseEntity
.
status
(
HttpStatus
.
OK
).
body
(
list
);
}
@RequestMapping
(
method
=
RequestMethod
.
GET
,
value
=
"/dictionarys/codelist/{code}"
)
public
ResponseEntity
<
CodeList
>
getCodeList
(
@PathVariable
(
"code"
)
String
code
)
{
CodeList
catalog
=
dictCoreService
.
getCodeListCatalog
(
code
);
...
...
@@ -62,6 +91,24 @@ public class DictCoreResource {
}
@RequestMapping
(
method
=
RequestMethod
.
POST
,
value
=
"/dictionarys/codelist/{code}/items"
)
public
ResponseEntity
<
List
<
CodeItem
>>
getCodeItems
(
@PathVariable
(
"code"
)
String
code
,
@RequestBody
List
<
String
>
values
)
{
List
<
CodeItem
>
list
=
new
ArrayList
<>();
optionService
.
list
(
Wrappers
.<
DictOption
>
lambdaQuery
().
eq
(
DictOption:
:
getCatalog
,
code
).
in
(
DictOption:
:
getValue
,
values
).
orderByAsc
(
DictOption:
:
getShoworder
)).
forEach
(
item
->
{
Map
<
String
,
Object
>
extension
=
new
HashMap
<>();
if
(!
StringUtils
.
isEmpty
(
item
.
getExtension
()))
extension
=
JSONObject
.
parseObject
(
item
.
getExtension
(),
Map
.
class
);
list
.
add
(
new
CodeItem
().
setValue
(
item
.
getValue
()).
setId
(
item
.
getValue
())
.
setDisabled
(((
item
.
getDisabled
()!=
null
&&
item
.
getDisabled
()==
1
)||(
item
.
getExpired
()!=
null
&&
item
.
getExpired
()==
1
))?
true
:
false
)
.
setFilter
(
item
.
getFilter
()).
setIconClass
(
item
.
getIconClass
()).
setLabel
(
item
.
getLabel
()).
setParent
(
item
.
getParent
()).
setExtension
(
extension
)
);
}
);
return
ResponseEntity
.
status
(
HttpStatus
.
OK
).
body
(
list
);
}
@RequestMapping
(
method
=
RequestMethod
.
POST
,
value
=
"/dictionarys/catalogs"
)
public
ResponseEntity
<
Boolean
>
save
(
@RequestBody
DictCatalogDTO
dictcatalogdto
)
{
return
ResponseEntity
.
status
(
HttpStatus
.
OK
).
body
(
dictcatalogService
.
save
(
dictcatalogMapping
.
toDomain
(
dictcatalogdto
)));
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录