fix: 修复 CourseServiceImpl 编译错误

修复 getCoursesByTenantId 方法调用 getTenantPackageCourses 时参数不足的问题。

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
En 2026-03-18 15:24:57 +08:00
parent aff8162180
commit e08530c04b

View File

@ -551,7 +551,7 @@ public class CourseServiceImpl extends ServiceImpl<CourseMapper, Course>
public List<Course> getCoursesByTenantId(Long tenantId) {
log.info("查询租户课程列表tenantId={}", tenantId);
// 使用三层架构查询租户 课程套餐 课程包 课程
return getTenantPackageCourses(tenantId);
return getTenantPackageCourses(tenantId, null, null);
}
@Override