quanwei
2025-12-13 30563323a53b0d0260c97d08a9e8bd4cc8227a95
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();
    }
}