Blame view

SubjectDictMapper.java 470 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
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);

}