0 已删除 ]; public function getList() { return $this->catchSearch() ->order('id', 'desc') ->select() ->toArray(); } /** * * @time 2019年12月08日 * @return \think\model\relation\BelongsToMany */ public function users(): \think\model\relation\BelongsToMany { return $this->belongsToMany(Users::class, 'user_has_roles', 'uid', 'role_id'); } }