StudentService.java
1.08 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
package com.jevon.service;
import com.jevon.model.Student;
import java.util.List;
/**
* @author chen
* @version 1.0
* @date 2019/10/18 0018 15:16
*/
public interface StudentService {
int insertBatch(List<Student> list);
List<Student> selectBySchoolName(int analyseId , String schoolName);
List<Student> selectByClassName(int analyseId , String schoolName ,String className);
int selectCountByScore(int analyseId , String schoolName , double begin , double end);
int selectCountBySchoolScore(int analyseId , String schoolName ,String className , double begin , double end);
List<String> selectClassNameBySchool(int analyseId , String schoolName);
Double selectMaxScore(int analyseId , String schoolName);
Double selectMinScore(int analyseId , String schoolName);
Double selectAvgScore(int analyseId , String schoolName);
//众数
Double selectModeNumber(int analyseId , String schoolName);
//中位数
Double selectMedian(int analyseId , String schoolName);
//标准差
Double selectStdev(int analyseId , String schoolName);
}