StudentService.java
401 Bytes
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);
int selectCountByScore(int analyseId , String schoolName , double begin , double end);
}