|
|
@@ -1,5 +1,6 @@
|
|
|
package com.fs.course.service.impl;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
import com.fs.course.domain.FsCoursePlaySourceConfig;
|
|
|
import com.fs.course.mapper.FsCoursePlaySourceConfigMapper;
|
|
|
@@ -27,6 +28,6 @@ public class FsCoursePlaySourceConfigServiceImpl extends ServiceImpl<FsCoursePla
|
|
|
|
|
|
@Override
|
|
|
public List<FsCoursePlaySourceConfig> selectByAppIds(List<String> miniAppList) {
|
|
|
- return Collections.emptyList();
|
|
|
+ return baseMapper.selectList(new QueryWrapper<FsCoursePlaySourceConfig>().in("appid", miniAppList));
|
|
|
}
|
|
|
}
|