ClassSubjectTaskService.java
2.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package com.meishu.service;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.meishu.dto.administer.PublishTasksDTO;
import com.meishu.dto.classes.GetClassesDTO;
import com.meishu.dto.exercise.GetExerciseRequestDTO;
import com.meishu.dto.task.*;
import com.meishu.model.*;
import com.baomidou.mybatisplus.extension.service.IService;
import com.meishu.vo.PerStudentComplicationVO;
import com.meishu.vo.administer.GetClassesDetailResponseVO;
import com.meishu.vo.administer.GetTeacherClassVO;
import com.meishu.vo.exercise.GetExerciseDetailResponseVO;
import com.meishu.vo.task.*;
import java.util.HashMap;
import java.util.List;
/**
* <p>
* 学习任务列表 服务类
* </p>
*
* @author DengMin
* @since 2021-09-16
*/
public interface ClassSubjectTaskService extends IService<ClassSubjectTaskDO> {
String code(String telephone);
List<TeacherClassVO> getTeacherClass(GetClassesRequestVO getClassesRequestVO);
String publishTasks(PublishTasksDTO publishTasksDTO);
IPage<GetTaskByIdVO> getTaskById(GetTaskByIdRequestDTO getTaskByIdRequestDTO);
String deletePreTasks(ClassSubjectTaskDO classSubjectTaskDO);
QueryTaskDetailResponseVO queryTaskDetail(QueryTaskDetailDTO queryTaskDetailDTO);
List<GetExerciseDetailResponseVO> getRelativeExercises(GetExerciseRequestDTO getExerciseRequestVO);
List<PerStudentComplicationVO> perStudentVod(GetUserVodPlayDTO getUserVodPlayRequestVO);
PerStudentExesResponseVO perStudentRelateExes(PerStudentExesDTO perStudentExesRequestVO);
List<ExeRightRatioVO> exeRightRatio(ExeRightRatioDTO exeRightRatioPO);
StudentDoneInfoResponseVO studentRelateDoneInfo(StudentDoneInfoRequestVO studentDoneInfoRequestVO);
GetExeByIdResponseVO getExeById(ExerciseDictDO exerciseDict);
List<ExerciseUserInfoVO> getExpandings(GetExpandingsPO getExpandingsPO);
StudentDoneInfoResponseVO studentxpandingDoneInfo(StudentDoneInfoRequestVO studentDoneInfoRequestVO);
PerStudentExesResponseVO perStudentExpandingExes(PerStudentExesRequestVO perStudentExesRequestVO);
List<GetVodDetailResponseVO> getRecommendVodByTreeId(GetRecommendVodByTreeIdVO getRecommendVodByTreeIdVO);
List<GetExercisesInfoByIdsResponseVO> getRecommendExeByTreeId(GetRecommendExeByTreeIdVO getRecommendExeByTreeIdVO);
List<SubjectTreeDO> allNodes(SubjectTreeDO knowledgeTree);
List<UserRoleDO> getClassStudents(GetClassStudentsDTO getClassStudentsDTO);
List<ExerciseDictDO> queryTaskRelatedExercise(TaskContentDO taskContentDO);
void data();
}