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 list); List selectBySchoolName(int analyseId , String schoolName); int selectCountByScore(int analyseId , String schoolName , double begin , double end); }