// +---------------------------------------------------------------------- declare (strict_types=1); namespace app\admin\model; use app\common\model\Course as CourseModel; class Course extends CourseModel { /** * 获取列表数据 * @param bool $isRecycle * @return \think\Paginator * @throws \think\db\exception\DbException */ public function getList(): \think\Paginator { return $this->order(['sort' => 'asc', 'create_time' => 'desc'])->paginate(15); } }