mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/per-boe/java-servers.git
synced 2025-12-24 02:02:59 +08:00
修复管理端在线课程添加标签没有传递数据
This commit is contained in:
@@ -343,4 +343,6 @@ public interface ICourseService {
|
|||||||
|
|
||||||
List<Course> findByIds(List<String> courseIds);
|
List<Course> findByIds(List<String> courseIds);
|
||||||
void deletedStudyResourceBatchByCourseIdAndType(String courseId,Integer courseType);
|
void deletedStudyResourceBatchByCourseIdAndType(String courseId,Integer courseType);
|
||||||
|
|
||||||
|
void getPhpCourseData();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -218,6 +218,13 @@ public class CourseTagServiceImpl implements ICourseTagService {
|
|||||||
return courseTag;
|
return courseTag;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<CourseTag> getTagsByIds(String id) {
|
||||||
|
// id=17,18
|
||||||
|
List<CourseTag> courseTagList = courseTagDao.getTagsByIds(id);
|
||||||
|
return courseTagList;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取热门标签
|
* 获取热门标签
|
||||||
* @param courseTagRelationDto
|
* @param courseTagRelationDto
|
||||||
|
|||||||
Reference in New Issue
Block a user