fix: 修复 CourseServiceImpl 编译错误
修复 getCoursesByTenantId 方法调用 getTenantPackageCourses 时参数不足的问题。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
aff8162180
commit
e08530c04b
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user