Files
mier-php/application/command.php

55 lines
3.6 KiB
PHP
Raw Normal View History

2025-08-11 10:22:05 +08:00
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006-2016 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: yunwuxin <448901948@qq.com>
// +----------------------------------------------------------------------
return [
'control-box' => 'app\common\command\ControlBox', //奖池监控
'clear-user-decorate' => 'app\common\command\ClearUserDecorate', //清理过期装扮
'push-message' => 'app\common\command\AsyncPushMessage', //发送私聊消息
'enevlope-over-time' => 'app\common\command\EnvelopeOverTime', //红包结束
'close-user-sign-contract' => 'app\common\command\CloseUserSignContract', //定时查询签约是否结束进行解约
'close-room-dating-stage' => 'app\common\command\CloseRoomDatingStage', //定时清理到期心动连线
'close-room-privacy-status' => 'app\common\command\CloseRoomPrivacyStatus',
'close-room-visitor' => 'app\common\command\CloseRoomVisitor',
'close-room-song-user-status' => 'app\common\command\CloseRoomSongUserStatus',
'close-user-relation' => 'app\common\command\CloseUserRelation', //定时清除用户关系
'statistics-room-last-week-earnings' => 'app\common\command\StatisticsRoomLastWeekEarnings', //统计上周房间流水
'give-user-room-week-earnings' => 'app\common\command\GiveUserRoomWeekEarnings', //发送用户收益
'gives-user-room-week-earnings' => 'app\common\command\GivesUserRoomWeekEarnings', //统计用户收益
'statistics-guild-last-week-earnings' => 'app\common\command\StatisticsGuildLastWeekEarnings',//统计上周公会流水
'gives-user-guild-week-earnings' => 'app\common\command\GivesUserGuildWeekEarnings', //统计上周公会长流水
'close-room-status' => 'app\common\command\CloseRoomStatus', //关闭没有主持的房间
'clear-user-vip' => 'app\common\command\ClearUserVip', //到期会员清除
'relieve-user-sign-contract' => 'app\common\command\RelieveUserSignContract', //解约用户每天降低身价
'create-sprite-log' => 'app\common\command\CreateSpriteLog', //监控仲夏夜梦曲
'close-user-sprite' => 'app\common\command\CloseUserSprite', //监控仲夏夜梦曲结算用户投票
'nobility-over-time' => 'app\common\command\NobilityOverTime', //监控仲夏夜梦曲结算用户投票
'fen-zhang' => 'app\common\command\FenZhang', //汇付分账
'balance-wages' => 'app\common\command\BalanceWages', //结算工资
'guild-wages' => 'app\common\command\GuildWages', //结算工会工资
'room-wages' => 'app\common\command\RoomWages', //房间工资结算
'zx-last-rank' => 'app\common\command\ZxLastRank', //上周周星榜缓存
'sign-exec' => 'app\common\command\SignExec', //签名删除
'close-date-micro' => 'app\common\command\CloseDateMicro', //关闭酒吧房麦位
'admin_msg' => 'app\common\command\AdminMsg', //后台系统消息
'close-room-auction-stage' => 'app\common\command\CloseRoomAuctionStage', //关闭房间拍卖活动
'clear-hot-value' => 'app\common\command\ClearHotValue', //清除房间魅力值
'clear-room-robot' => 'app\common\command\ClearRoomRobot', //清理空房间机器人
];