param('resources_id', '');//客户资源ID if (empty($resources_id)) { return fail('缺少参数'); } $where = [ 'resources_id' => $resources_id, ]; $res = (new PersonCourseScheduleService())->getList($where); return success($res); } }