ef5c16a0
陈杰
试卷导入
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package com.jevon.service;
import com.jevon.model.StudentDetail;
import java.util.List;
/**
* @author chen
* @version 1.0
* @date 2019/10/18 0018 13:46
*/
public interface StudentDetailService {
int insertBatch(List<StudentDetail> list);
|
a923e3fe
陈杰
四维诊断
|
16
|
Double selectSumScore(int analyseId, List<String> league , String schoolName, String examNumber);
|
e6e6895d
陈杰
学科考试概况
|
17
|
|
94e3820a
陈杰
四维诊断
|
18
19
|
Double selectSumScore(int analyseId, List<String> league , String schoolName, List<String> examNumbers);
|
5cba275e
陈杰
个人学情
|
20
21
22
23
|
Double selectStudentSumScore(int analyseId, String schoolName , String studentNumber , List<String> examNumbers);
Double selectClassSumScore(int analyseId, String schoolName , String className , List<String> examNumbers);
|
74b6b20f
陈杰
四维诊断
|
24
25
|
int selectTrueByExamNumber(int analyseId , String schoolName , String examNumber);
|
94e3820a
陈杰
四维诊断
|
26
27
28
29
|
int selectTrueByExamNumber(int analyseId , List<String> league , String schoolName , String examNumber , List<String> studentNumbers);
int selectTrueByExamNumber(int analyseId , List<String> league , String schoolName , List<String> examNumbers , List<String> studentNumbers);
|
ef5c16a0
陈杰
试卷导入
|
30
|
}
|