| 1234567891011121314151617 |
- package com.xjrsoft.module.base.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.github.yulichang.base.MPJBaseMapper;
- import com.xjrsoft.module.base.entity.CourseSubjectDetail;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * @title: 课程学科管理详情表
- * @Author dzx
- * @Date: 2024-11-26
- * @Version 1.0
- */
- @Mapper
- public interface CourseSubjectDetailMapper extends MPJBaseMapper<CourseSubjectDetail> {
- }
|