AnalyseDetailService.java
732 Bytes
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<AnalyseDetail> list);
List<AnalyseDetail> selectByAnalyseId(int analyseId);
Double selectDifficult(int analyseId , int difficult);
Double selectSumType(int analyseId , String questionType);
List<AnalyseDetail> selectDifficultDetail(int analyseId , int difficult);
List<String> selectQuestionType(int analyseId);
List<String> selectQuestionNumberByType(int analyseId , String questionType);
List<String> selectQuestionNumberByDifficult(int analyseId , int difficult);
}