Blame view

ClassesDictHistoryMapper.java 473 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
package com.meishu.mapper;

import com.meishu.model.ClassesDictHistoryDO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;

import java.util.List;

/**
 * <p>
 * 学校班级字典表 Mapper 接口
 * </p>
 *
 * @author Tuyp
 * @since 2021-08-11
 */
@Repository
public interface ClassesDictHistoryMapper extends BaseMapper<ClassesDictHistoryDO> {

    List<ClassesDictHistoryDO> getAllPastSemester(String grade);

}