私域操盘手 - 修改模块控制器全部继承基类以实现更加统一的操作规则

This commit is contained in:
柳清爽
2025-05-06 17:47:30 +08:00
parent e770d668d7
commit 8c4a899b43
6 changed files with 35 additions and 11 deletions

View File

@@ -0,0 +1,21 @@
<?php
namespace app\cunkebao\controller;
use think\Controller;
/**
* 获客场景控制器
*/
class Plan extends Controller
{
/**
* 计划任务
*
* @return \think\response\Json
*/
public function index()
{
}
}