Showing
1 changed file
with
3 additions
and
3 deletions
| @@ -66,7 +66,7 @@ public class RoomOperationServiceImpl implements RoomOperationSerivice { | @@ -66,7 +66,7 @@ public class RoomOperationServiceImpl implements RoomOperationSerivice { | ||
| 66 | LiveMonitorRoom liveMonitorRoom = liveMonitorRoomMapper.selectById(delayParam.getRoomId()); | 66 | LiveMonitorRoom liveMonitorRoom = liveMonitorRoomMapper.selectById(delayParam.getRoomId()); |
| 67 | //日志 | 67 | //日志 |
| 68 | OperationLog opLog = new OperationLog(); | 68 | OperationLog opLog = new OperationLog(); |
| 69 | - opLog.setRoomName(liveMonitorRoom.getName()); | 69 | + opLog.setName(liveMonitorRoom.getName()); |
| 70 | opLog.setBusinessId(delayParam.getRoomId().toString()); | 70 | opLog.setBusinessId(delayParam.getRoomId().toString()); |
| 71 | opLog.setBusinessType("cloudMonitor"); | 71 | opLog.setBusinessType("cloudMonitor"); |
| 72 | opLog.setOperationType(RoomOperationEnum.DELAY.getCode()); | 72 | opLog.setOperationType(RoomOperationEnum.DELAY.getCode()); |
| @@ -174,7 +174,7 @@ public class RoomOperationServiceImpl implements RoomOperationSerivice { | @@ -174,7 +174,7 @@ public class RoomOperationServiceImpl implements RoomOperationSerivice { | ||
| 174 | 174 | ||
| 175 | //日志 | 175 | //日志 |
| 176 | OperationLog opLog = new OperationLog(); | 176 | OperationLog opLog = new OperationLog(); |
| 177 | - opLog.setRoomName(liveMonitorRoom.getName()); | 177 | + opLog.setName(liveMonitorRoom.getName()); |
| 178 | opLog.setBusinessId(blockParam.getRoomId().toString()); | 178 | opLog.setBusinessId(blockParam.getRoomId().toString()); |
| 179 | opLog.setBusinessType("cloudMonitor"); | 179 | opLog.setBusinessType("cloudMonitor"); |
| 180 | opLog.setOperationType(blockParam.getBlockStatus().equals(0)? | 180 | opLog.setOperationType(blockParam.getBlockStatus().equals(0)? |
| @@ -264,7 +264,7 @@ public class RoomOperationServiceImpl implements RoomOperationSerivice { | @@ -264,7 +264,7 @@ public class RoomOperationServiceImpl implements RoomOperationSerivice { | ||
| 264 | monitorMarkMapper.insert(monitorMark); | 264 | monitorMarkMapper.insert(monitorMark); |
| 265 | //日志 | 265 | //日志 |
| 266 | OperationLog opLog = new OperationLog(); | 266 | OperationLog opLog = new OperationLog(); |
| 267 | - opLog.setRoomName(markParam.getRoomName()); | 267 | + opLog.setName(markParam.getRoomName()); |
| 268 | opLog.setBusinessId(markParam.getRoomId().toString()); | 268 | opLog.setBusinessId(markParam.getRoomId().toString()); |
| 269 | opLog.setBusinessType("cloudMonitor"); | 269 | opLog.setBusinessType("cloudMonitor"); |
| 270 | opLog.setOperationType(markParam.getOperationType()); | 270 | opLog.setOperationType(markParam.getOperationType()); |
-
Please register or login to post a comment