私域操盘手 - 设备微信调整路由模块

This commit is contained in:
柳清爽
2025-05-12 17:59:34 +08:00
parent 6e4f4e72db
commit f08ffdb79b
7 changed files with 44 additions and 592 deletions

View File

@@ -0,0 +1,33 @@
<?php
namespace app\cunkebao\controller\wechat;
use library\ResponseHelper;
/**
* 设备微信控制器
*/
class GetWechatOnDeviceFriendProfileV1Controller extends BaseController
{
protected function getWechatAccountProfileById()
{
}
/**
* 获取微信好友详情
*
* @return \think\response\Json
*/
public function index()
{
try {
$id = $this->request->param('id/d');
} catch (\Exception $e) {
return ResponseHelper::error($e->getMessage(), $e->getCode());
}
}
}