新需求-活动需求-盲盒转盘调通盘

This commit is contained in:
2025-10-13 14:59:37 +08:00
parent 98417ecf7f
commit 84695ac8a1

View File

@@ -3,6 +3,7 @@
namespace app\cron\controller; namespace app\cron\controller;
use app\common\controller\Push; use app\common\controller\Push;
use think\Cache;
use think\Db; use think\Db;
@@ -125,9 +126,10 @@ class RoomPan
$res = db::name('vs_room_pan_xlh')->where('id',$value['id'])->update([ $res = db::name('vs_room_pan_xlh')->where('id',$value['id'])->update([
'send_time' => time() 'send_time' => time()
]); ]);
db::name("vs_room")->where('id',$value['room_id'])->update([ // db::name("vs_room")->where('id',$value['room_id'])->update([
'xlh_periods_num' => 0 // 'xlh_periods_num' => 0
]); // ]);
Cache::set("xlh_periods_num", 0, 0);
//推送礼物横幅 //推送礼物横幅
$text = "本轮巡乐会已结束,请大家重新开始下一轮巡乐会"; $text = "本轮巡乐会已结束,请大家重新开始下一轮巡乐会";
$push = new Push(0, $value['room_id']); $push = new Push(0, $value['room_id']);