1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| <?php
| namespace app\api\model\plus\business;
| use app\common\model\plus\business\Template as CommonTemplate;
| class Template extends CommonTemplate
| {
| /**
| * 获取模板列表
| * @param $param
| * @return array|false|\think\Model|null
| * @throws \think\db\exception\DbException
| */
| public function lists(){
| return $this->select();
| }
| }
|
|