Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Administrator
/
framework-tools
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 bd7387a5
authored
Jul 11, 2024
by
henry
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改文档知识库注解信息
1 parent
32026e95
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
framework-asset/src/main/java/org/arch/overall/controller/KlDocPoolController.java
framework-asset/src/main/java/org/arch/overall/controller/KlDocPoolController.java
View file @
bd7387a
...
...
@@ -26,7 +26,7 @@ import org.springframework.web.bind.annotation.RestController;
* @author makejava
* @since 2023-12-14
*/
@Api
(
value
=
"/kl-doc-pool"
,
tags
=
{
"架构知识库-
典型案例库-总体架构资产文档库
"
})
@Api
(
value
=
"/kl-doc-pool"
,
tags
=
{
"架构知识库-
架构知识文档管理
"
})
@RestController
@RequestMapping
(
"/kl-doc-pool"
)
public
class
KlDocPoolController
{
...
...
@@ -39,9 +39,9 @@ public class KlDocPoolController {
*
* @param params 参数
*/
@ApiOperation
(
value
=
"分页列表"
,
notes
=
"
分页列表
"
,
httpMethod
=
"POST"
)
@ApiOperation
(
value
=
"分页列表"
,
notes
=
"
架构知识库分页列表查询
"
,
httpMethod
=
"POST"
)
@PostMapping
(
value
=
"/"
)
@OperLog
(
value
=
LogOperTypeEnum
.
UPDATE
,
logTypeValue
=
LogTypeEnum
.
BUSI_LOG
,
operDes
=
"分页列表
"
,
moduleName
=
"架构知识库"
)
@OperLog
(
value
=
LogOperTypeEnum
.
QUERY
,
logTypeValue
=
LogTypeEnum
.
BUSI_LOG
,
operDes
=
"架构知识文档分页列表查询
"
,
moduleName
=
"架构知识库"
)
public
Result
iPage
(
@RequestBody
KlDocPoolDTO
params
)
{
IPage
<
KlDocPoolVO
>
aPage
=
klDocPoolService
.
iPage
(
params
,
PageDTO
.
of
(
params
.
getCurrent
(),
params
.
getPageSize
()));
...
...
@@ -56,7 +56,7 @@ public class KlDocPoolController {
*/
@ApiOperation
(
value
=
"新增"
,
notes
=
"新增"
,
httpMethod
=
"POST"
)
@PostMapping
(
value
=
"/cDocPool"
)
@OperLog
(
value
=
LogOperTypeEnum
.
ADD
,
logTypeValue
=
LogTypeEnum
.
BUSI_LOG
,
operDes
=
"新增"
,
moduleName
=
"架构知识库"
)
@OperLog
(
value
=
LogOperTypeEnum
.
ADD
,
logTypeValue
=
LogTypeEnum
.
BUSI_LOG
,
operDes
=
"新增
架构知识文档
"
,
moduleName
=
"架构知识库"
)
public
Result
create
(
@RequestBody
@Validated
KlDocPoolDTO
params
)
{
return
Result
.
success
(
klDocPoolService
.
insert
(
params
));
}
...
...
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