ExamSongService.java 766 B

12345678910111213141516171819202122232425262728293031
  1. package com.keao.edu.user.service;
  2. import com.keao.edu.common.page.PageInfo;
  3. import com.keao.edu.common.service.BaseService;
  4. import com.keao.edu.user.entity.ExamSong;
  5. import com.keao.edu.user.page.ExamSongQueryInfo;
  6. import org.apache.ibatis.annotations.Param;
  7. import java.util.List;
  8. public interface ExamSongService extends BaseService<Integer, ExamSong> {
  9. /**
  10. * @describe 根据专业获取曲目
  11. * @author Joburgess
  12. * @date 2020.07.03
  13. * @param subjectId:
  14. * @return java.util.List<com.keao.edu.user.entity.ExamSong>
  15. */
  16. List<ExamSong> getWithSubject(Integer subjectId);
  17. /**
  18. * 获取考级曲库
  19. * @param queryInfo
  20. * @return
  21. */
  22. PageInfo<ExamSong> querySongPage(ExamSongQueryInfo queryInfo);
  23. }