MusicTheoryDao.java 553 B

123456789101112131415161718192021
  1. package com.keao.edu.user.dao;
  2. import com.keao.edu.common.dal.BaseDAO;
  3. import com.keao.edu.user.entity.MusicTheory;
  4. import org.apache.ibatis.annotations.Param;
  5. import java.util.List;
  6. /**
  7. * @author: wangyp
  8. * @Date: 2020/6/27 11:26
  9. * @desc 乐理Dao
  10. */
  11. public interface MusicTheoryDao extends BaseDAO<Integer, MusicTheory> {
  12. List<MusicTheory> getWithTenant(@Param("tenantId") Integer tenantId);
  13. MusicTheory getWithTenantAndLevel(@Param("tenantId") String tenantId,
  14. @Param("level") Integer level);
  15. }