package com.jevon.service; import com.jevon.model.AnalyseDetail; import java.util.List; /** * @author chen * @version 1.0 * @date 2019/10/18 0018 11:25 */ public interface AnalyseDetailService { int insertBatch(List list); List selectByAnalyseId(int analyseId); Double selectDifficult(int analyseId , int difficult); Double selectSumType(int analyseId , String questionType); List selectDifficultDetail(int analyseId , int difficult); List selectQuestionType(int analyseId); }