| 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.OutsideAssociations;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * @title: 校外其他协会记录
- * @Author szs
- * @Date: 2025-04-24
- * @Version 1.0
- */
- @Mapper
- public interface OutsideAssociationsMapper extends MPJBaseMapper<OutsideAssociations> {
- }
|