package com.keao.edu.user.service; import com.keao.edu.common.page.PageInfo; import com.keao.edu.common.service.BaseService; import com.keao.edu.user.dto.ExamSubjectSongDto; import com.keao.edu.user.entity.ExamSong; import com.keao.edu.user.entity.ExamSubjectSong; import com.keao.edu.user.page.ExamSubjectSongQueryInfo; import java.util.List; public interface ExamSubjectSongService extends BaseService { /** * @describe 添加考试内容 * @author Joburgess * @date 2020.06.18 * @param examSubjectSongs: * @return void */ void addExamSubjects(List examSubjectSongs); PageInfo queryExamSubjectSongs(ExamSubjectSongQueryInfo queryInfo); void deleteExamSubjectSong(Long id); /** * 获取考试对应科目对应级别的曲目 * @param examSubjectId * @param level * @return */ List getExamSubjectSong(Integer examinationBasicId,Long examSubjectId,Integer level); /** * 获取考级专业相应级别列表 * @param examinationBasicId * @param examSubjectId * @return */ List getExamSubjectLevels(Integer examinationBasicId,Long examSubjectId); }