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); Double selectSumScore(int analyseId, List<String> league , String schoolName, String examNumber); int selectTrueByExamNumber(int analyseId , List<String> league , String schoolName , String examNumber , List<String> studentNumbers ,Double score); }