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> { }