|
@@ -146,7 +146,7 @@ public class LiveRoomServiceImpl extends ServiceImpl<LiveRoomDao, LiveRoom> impl
|
|
|
* <p> en :房间类型
|
|
|
*/
|
|
|
private final BiFunction<Long, RoomTypeEnum, String> GenRoomUid = (userId, en) -> String
|
|
|
- .join("-", en.equals(RoomTypeEnum.TEMP)?RoomTypeEnum.LIVE.getCode() +"_"+en.getCode():en.getCode(), userId.toString(), new Date().getTime() + "");
|
|
|
+ .join("-", en.equals(RoomTypeEnum.TEMP)?RoomTypeEnum.LIVE.getCode() +"-"+en.getCode():en.getCode(), userId.toString(), new Date().getTime() + "");
|
|
|
|
|
|
@Override
|
|
|
public LiveRoomDao getDao() {
|