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 f8aae0f3
authored
Jul 15, 2024
by
henry
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
删除无用的日志注解
1 parent
a140dbee
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
4 deletions
framework-asset/src/main/java/org/arch/overall/controller/ArchiModelDictDetailController.java
framework-asset/src/main/java/org/arch/overall/controller/ArchiModelDictDetailController.java
View file @
f8aae0f
...
...
@@ -45,7 +45,6 @@ public class ArchiModelDictDetailController {
@ApiOperation
(
value
=
"更新"
)
@PostMapping
(
value
=
"/uModelDict"
)
//@AutoLog(value = LogEventTypeEnum.UPDATE, LogTypeValue = LogTypeEnum.BUSI_LOG, LogLevValue = LogLevEnum.MIDDLE)
@OperLog
(
value
=
LogOperTypeEnum
.
UPDATE
,
logTypeValue
=
LogTypeEnum
.
BUSI_LOG
,
operDes
=
"更新"
,
moduleName
=
"元模型数据字典详情"
)
public
Result
update
(
@RequestBody
ArchiModelDictDetailDTO
dto
)
{
return
Result
.
success
(
service
.
update
(
dto
));
...
...
@@ -53,7 +52,6 @@ public class ArchiModelDictDetailController {
@ApiOperation
(
value
=
"删除"
)
@PostMapping
(
value
=
"/del"
)
//@AutoLog(value = LogEventTypeEnum.DELETE, LogTypeValue = LogTypeEnum.BUSI_LOG, LogLevValue = LogLevEnum.HIGH)
@OperLog
(
value
=
LogOperTypeEnum
.
DELETE
,
logTypeValue
=
LogTypeEnum
.
BUSI_LOG
,
operDes
=
"删除"
,
moduleName
=
"元模型数据字典详情"
)
public
Result
delete
(
@RequestBody
BathRemoveDTO
model
)
{
return
service
.
del
(
model
)
?
...
...
@@ -63,7 +61,6 @@ public class ArchiModelDictDetailController {
@ApiOperation
(
value
=
"获取字典所有key"
)
@PostMapping
(
value
=
"/gAllDictKey"
)
//@AutoLog(value = LogEventTypeEnum.SEARCH, LogTypeValue = LogTypeEnum.BUSI_LOG, LogLevValue = LogLevEnum.LOW)
@OperLog
(
value
=
LogOperTypeEnum
.
QUERY
,
logTypeValue
=
LogTypeEnum
.
BUSI_LOG
,
operDes
=
"获取字典所有key"
,
moduleName
=
"元模型数据字典详情"
)
public
Result
<
Object
>
getDictByKey
()
{
return
Result
.
success
(
service
.
getAllDict
());
...
...
@@ -71,7 +68,6 @@ public class ArchiModelDictDetailController {
@ApiOperation
(
value
=
"根据字典标识取字典"
)
@PostMapping
(
value
=
"/gDictByKey"
)
//@AutoLog(value = LogEventTypeEnum.SEARCH, LogTypeValue = LogTypeEnum.BUSI_LOG, LogLevValue = LogLevEnum.LOW)
@OperLog
(
value
=
LogOperTypeEnum
.
QUERY
,
logTypeValue
=
LogTypeEnum
.
BUSI_LOG
,
operDes
=
"根据字典标识取字典"
,
moduleName
=
"元模型数据字典详情"
)
public
Result
getDictByKey
(
@RequestBody
ArchiModelDictDTO
model
)
{
String
key
=
model
.
getTypeValue
();
...
...
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