Blame view

ExerciseExpandMappingMapper.java 404 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
package com.meishu.mapper;

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

/**
 * <p>
 * 学生--拓展习题映射表 Mapper 接口
 * </p>
 *
 * @author DengMin
 * @since 2021-09-16
 */
 @Repository
public interface ExerciseExpandMappingMapper extends BaseMapper<ExerciseExpandMappingDO> {

}