|
|
|
@ -262,6 +262,9 @@ public class TeacherOpenCourseHandsOnSimulationTasksService extends CoreBaseServ
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<HandsOnTaskProblemVO> getObjectiveProblem(String problemIds, Long taskId) {
|
|
|
|
|
if (StringUtils.isEmpty(problemIds)) {
|
|
|
|
|
return new ArrayList<>();
|
|
|
|
|
}
|
|
|
|
|
// List<ResourcesQuestion> resourcesQuestions = resourcesQuestionService.getByIds(problemIds);
|
|
|
|
|
TeacherOpenCourseHandsOnSimulationTasks info = taskId == null ? null : getInfo(taskId);
|
|
|
|
|
List<TeacherOpenCourseMergeResourcesQuestion> resourcesQuestions = StringUtils.isNotEmpty(problemIds) ? mergeResourcesQuestionService.getByIds(problemIds) : null;
|
|
|
|
|