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