|
@@ -2,7 +2,6 @@ package com.xhkjedu.sexam.mapper.exam;
|
2
|
2
|
|
3
|
3
|
import com.xhkjedu.sexam.base.TkMapper;
|
4
|
4
|
import com.xhkjedu.sexam.model.exam.ESubject;
|
5
|
|
-import com.xhkjedu.sexam.vo.exam.ESubjectVo;
|
6
|
5
|
import org.apache.ibatis.annotations.Param;
|
7
|
6
|
|
8
|
7
|
import java.util.List;
|
|
@@ -12,9 +11,6 @@ public interface ESubjectMapper extends TkMapper<ESubject> {
|
12
|
11
|
//考试设置
|
13
|
12
|
void setExam(@Param("subjects") List<ESubject> subjects);
|
14
|
13
|
|
15
|
|
- //考试下所有科目
|
16
|
|
- List<ESubjectVo> listExamSubjects(@Param("examid") Integer examid);
|
17
|
|
-
|
18
|
14
|
//更新考试科目状态
|
19
|
15
|
void updateExamSubjectState(@Param("esstate") Integer esstate, @Param("esid") Integer esid);
|
20
|
16
|
|