package com.meishu.mapper; import com.meishu.model.SubjectStudentAnswerStarDO; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.springframework.stereotype.Repository; /** * <p> * 学生答卷星级表 Mapper 接口 * </p> * * @author Tuyp * @since 2021-05-13 */ @Repository public interface SubjectStudentAnswerStarMapper extends BaseMapper<SubjectStudentAnswerStarDO> { }