Toggle navigation
Toggle navigation
This project
Loading...
Sign in
crp
/
crp-operation
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
wanghongbo
2025-08-20 10:13:57 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
13743a7f6405c66b34d5caa91def85ceb07135d2
13743a7f
1 parent
d2e3ee1f
日志查询字段修改
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
src/main/java/com/wondertek/service/impl/RoomOperationServiceImpl.java
src/main/java/com/wondertek/service/impl/RoomOperationServiceImpl.java
View file @
13743a7
...
...
@@ -66,7 +66,7 @@ public class RoomOperationServiceImpl implements RoomOperationSerivice {
LiveMonitorRoom
liveMonitorRoom
=
liveMonitorRoomMapper
.
selectById
(
delayParam
.
getRoomId
());
//日志
OperationLog
opLog
=
new
OperationLog
();
opLog
.
set
Room
Name
(
liveMonitorRoom
.
getName
());
opLog
.
setName
(
liveMonitorRoom
.
getName
());
opLog
.
setBusinessId
(
delayParam
.
getRoomId
().
toString
());
opLog
.
setBusinessType
(
"cloudMonitor"
);
opLog
.
setOperationType
(
RoomOperationEnum
.
DELAY
.
getCode
());
...
...
@@ -174,7 +174,7 @@ public class RoomOperationServiceImpl implements RoomOperationSerivice {
//日志
OperationLog
opLog
=
new
OperationLog
();
opLog
.
set
Room
Name
(
liveMonitorRoom
.
getName
());
opLog
.
setName
(
liveMonitorRoom
.
getName
());
opLog
.
setBusinessId
(
blockParam
.
getRoomId
().
toString
());
opLog
.
setBusinessType
(
"cloudMonitor"
);
opLog
.
setOperationType
(
blockParam
.
getBlockStatus
().
equals
(
0
)?
...
...
@@ -264,7 +264,7 @@ public class RoomOperationServiceImpl implements RoomOperationSerivice {
monitorMarkMapper
.
insert
(
monitorMark
);
//日志
OperationLog
opLog
=
new
OperationLog
();
opLog
.
set
Room
Name
(
markParam
.
getRoomName
());
opLog
.
setName
(
markParam
.
getRoomName
());
opLog
.
setBusinessId
(
markParam
.
getRoomId
().
toString
());
opLog
.
setBusinessType
(
"cloudMonitor"
);
opLog
.
setOperationType
(
markParam
.
getOperationType
());
...
...
Please
register
or
login
to post a comment