2025-03-12 12:18:06 +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 [
|
2025-04-12 15:08:21 +08:00
|
|
|
'device:list' => 'app\command\DeviceListCommand', // 设备列表 √
|
|
|
|
|
'wechatFriends:list' => 'app\command\WechatFriendCommand', // 微信好友列表 √
|
|
|
|
|
'wechatChatroom:list' => 'app\command\WechatChatroomCommand', // 微信群列表 √
|
|
|
|
|
'friendTask:list' => 'app\command\FriendTaskCommand', // 添加好友任务列表 √
|
|
|
|
|
'wechatList:list' => 'app\command\WechatListCommand', // 微信客服列表 √
|
|
|
|
|
'account:list' => 'app\command\AccountListCommand', // 公司账号列表 √
|
|
|
|
|
'message:friendsList' => 'app\command\MessageFriendsListCommand', // 微信好友消息列表 √
|
|
|
|
|
'message:chatroomList' => 'app\command\MessageChatroomListCommand', // 微信群聊消息列表 √
|
|
|
|
|
'department:list' => 'app\command\DepartmentListCommand', // 部门列表 √
|
2025-04-21 15:37:38 +08:00
|
|
|
'content:sync' => 'app\command\SyncContentCommand', // 同步内容库 √
|
2025-04-22 19:17:14 +08:00
|
|
|
'groupFriends:list' => 'app\command\GroupFriendsCommand', // 微信群好友列表
|
2025-04-25 09:31:11 +08:00
|
|
|
'allotFriends:run' => 'app\command\AllotFriendCommand', // 自动分配微信好友
|
|
|
|
|
'allotChatroom:run' => 'app\command\AllotChatroomCommand', // 自动分配微信群聊
|
2025-03-12 12:18:06 +08:00
|
|
|
];
|