CustomTemplateController.php
825 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
namespace App\Http\Controllers\Bside\Template;
use App\Http\Controllers\Bside\BaseController;
/**
* @remark :自定义模块
* @name :CustomTemplateController
* @author :lyh
* @time :2023/6/29 9:23
*/
class CustomTemplateController extends BaseController
{
/**
* @remark :自定义界面列表
* @name :lists
* @author :lyh
* @method :post
* @time :2023/6/29 9:29
*/
public function lists(){
}
/**
* @remark :保存自定义模块
* @name :save
* @author :lyh
* @method :post
* @time :2023/6/29 9:30
*/
public function save(){
}
/**
* @remark :删除自定义模块
* @name :del
* @author :lyh
* @method :post
* @time :2023/6/29 9:30
*/
public function del(){
}
}