巡乐会抽奖接口提交.-抽奖记录

This commit is contained in:
2025-08-28 18:44:56 +08:00
parent 92ac1971b2
commit a5dc0d6252
4 changed files with 226 additions and 36 deletions

View File

@@ -91,4 +91,25 @@ class BlindBoxTurntable extends BaseCom
$reslut = model('BlindBoxTurntableGift')->xlh_draw_gift($user_id,$num,$room_id);
return v($reslut['code'], $reslut['msg'], $reslut['data']);
}
/*
* 获取我的巡乐会记录
*/
public function get_xlh_my_record(){
$page = input('page',1);
$page_size = input('page_size',12);
$user_id = $this->uid;
$room_id = input('room_id',0);
$reslut = model('BlindBoxTurntableGift')->xlh_get_user_record($user_id,$room_id,$page,$page_size);
return v($reslut['code'], $reslut['msg'], $reslut['data']);
}
/*
* 获取全服巡乐会记录(榜单)
*/
public function get_xlh_all_record(){
$page = input('page',1);
$page_size = input('page_size',12);
$room_id = input('room_id',0);
$reslut = model('BlindBoxTurntableGift')->xlh_ranking($room_id,$page,$page_size);
return v($reslut['code'], $reslut['msg'], $reslut['data']);
}
}

View File

@@ -9,6 +9,9 @@ class Cron
{
$cron = new \app\cron\controller\PerformPerSecond();
$cron->index();
//巡乐会结束 礼物发放
$cron = new \app\cron\controller\RoomPan();
$cron->index();
}
//每周执行
@@ -31,4 +34,10 @@ class Cron
$cron = new \app\cron\controller\DaySeconds();
$cron->index();
}
//巡乐会结束 礼物发放
public function XlhSend(){
$cron = new \app\cron\controller\RoomPan();
$cron->index();
}
}