27 lines
411 B
PHP
27 lines
411 B
PHP
<?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(){
|
|
|
|
}
|
|
}
|