|
@@ -171,7 +171,11 @@ public class RoomServiceImpl extends ServiceImpl<IRoomMapper, Room> implements I
|
|
|
throw new BusinessException(ResultCode.ROOM_ING);
|
|
|
}
|
|
|
}else {
|
|
|
- room.setRoomId(roomUtil.genRoomId(1000));
|
|
|
+ String roomId = roomUtil.genRoomId(1000);
|
|
|
+ if(StringUtils.isNotBlank(room.getPlatform()) && room.getPlatform().equals("ucenter")){
|
|
|
+ roomId = "temp_" + roomId;
|
|
|
+ }
|
|
|
+ room.setRoomId(roomId);
|
|
|
}
|
|
|
|
|
|
if(param.getNumList().size() >0){
|