This commit is contained in:
wangjinlei
2022-11-23 15:15:41 +08:00
parent 8d61cab137
commit e2a639d4fd

View File

@@ -0,0 +1,26 @@
<?php
namespace app\master\controller;
use Exception;
use think\Controller;
use think\Db;
use think\Queue;
use think\Validate;
/**
* @title 文章接口
* @description 文章相关操作
* @group 文章相关
*/
class Mytest extends Controller {
public function __construct(\think\Request $request = null) {
parent::__construct($request);
}
public function ttt(){
}
}