Blame view

src/main/java/com/jevon/service/StudentDetailService.java 468 Bytes
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 , String schoolName , String examNumber);
e6e6895d   陈杰   学科考试概况
17

94e3820a   陈杰   四维诊断
18
19
    int selectTrueByExamNumber(int analyseId , String schoolName , String examNumber , List<String> studentNumbers ,Double score);

5cba275e   陈杰   个人学情
20
}
74b6b20f   陈杰   四维诊断

94e3820a   陈杰   四维诊断

ef5c16a0   陈杰   试卷导入