背包礼物一键全清

This commit is contained in:
2025-09-09 10:15:44 +08:00
parent 08a67d55e5
commit 5a6a6adc45
2 changed files with 22 additions and 0 deletions

View File

@@ -161,6 +161,15 @@ class Room extends BaseCom
return V($reslut['code'], $reslut['msg'], $reslut['data']);
}
//房间送礼 背包一键全清
public function room_gift_all_clear()
{
$room_id = input('room_id', 0);
$to_uid = input('to_uid', 0);//收礼人ID
$reslut = model('Room')->room_gift_all_clear($this->uid, $room_id, $to_uid);
return V($reslut['code'], $reslut['msg'], $reslut['data']);
}
//房间榜单
public function room_rank()
{