1234567891011121314151617 |
- package com.xjrsoft.module.teacher.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.github.yulichang.base.MPJBaseMapper;
- import com.xjrsoft.module.teacher.entity.TeacherAward;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * @title: 教师获奖登记
- * @Author dzx
- * @Date: 2024-06-06
- * @Version 1.0
- */
- @Mapper
- public interface TeacherAwardMapper extends MPJBaseMapper<TeacherAward> {
- }
|