SubjectDictMapper.java
470 Bytes
package com.meishu.mapper;
import com.meishu.model.SubjectDictDO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
import java.util.List;
/**
* <p>
* 学校科目字典表 Mapper 接口
* </p>
*
* @author Tuyp
* @since 2021-08-17
*/
@Repository
public interface SubjectDictMapper extends BaseMapper<SubjectDictDO> {
List<String> getClassSubjectName(String grade,String classes,String session);
}