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

This commit is contained in:
2025-08-29 09:36:59 +08:00
parent 5c21adc55c
commit 19be5f0736
2 changed files with 34 additions and 32 deletions

View File

@@ -70,6 +70,10 @@ class Push
//推送系统消息
const PUSH_SYSTEM_MESSAGE = 7000;//推送系统消息
//房间盘推送
//巡乐会推送开启进度推送
const PUSH_ROOM_PAN_XLH_PROGRESS = 8000;
public $user_id, $room_id, $topic_room, $topic_client;
public function __construct($user_id = 0, $room_id = 0)
@@ -287,6 +291,12 @@ class Push
$this->push(self::PUSH_SYSTEM_MESSAGE, $topic, $data);
}
//巡乐会推送
public function xunlehui($data){
$topic = 'xunlehui';
$this->push(self::PUSH_ROOM_PAN_XLH_PROGRESS, $topic, $data);
}