修改房间类型 K歌房处理

This commit is contained in:
2025-09-08 20:05:33 +08:00
parent 3e9af0e391
commit 08a67d55e5
2 changed files with 32 additions and 1 deletions

View File

@@ -407,4 +407,13 @@ class Room extends BaseCom
$reslut = model('Room')->room_online_list($room_id, $page, $limit);
return V($reslut['code'], $reslut['msg'], $reslut['data']);
}
//房间用户当前魅力值列表
public function room_user_charm_list()
{
$room_id = input('room_id', 0);
$user_id = input('user_id', '');
$reslut = model('Room')->room_user_charm_list($room_id, $user_id);
return V($reslut['code'], $reslut['msg'], $reslut['data']);
}
}