Commit 4f27ea3d authored by 赵啸非's avatar 赵啸非

修改通知去重复

parent 08caed9f
......@@ -204,6 +204,10 @@ public class MettingRecordServiceImpl extends AbstractCRUDServiceImpl<MettingRec
log.info("删除会议记录:{}", mettingRecordEntities.size());
mettingRecordEntities.forEach(entity -> {
if(entity.getMeetStatus()==MeetStatusEnum.进行中.getValue()){
throw new AppException("会议进行中,无法删除");
}
UploadDeviceReq uploadDeviceReq = new UploadDeviceReq();
RoomEntity roomEntity = roomService.get(entity.getRoomId(), context);
if (!ObjectUtils.isEmpty(roomEntity)) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment