OutsideAssociationsMapper.java 446 B

1234567891011121314151617
  1. package com.xjrsoft.module.teacher.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.github.yulichang.base.MPJBaseMapper;
  4. import com.xjrsoft.module.teacher.entity.OutsideAssociations;
  5. import org.apache.ibatis.annotations.Mapper;
  6. /**
  7. * @title: 校外其他协会记录
  8. * @Author szs
  9. * @Date: 2025-04-24
  10. * @Version 1.0
  11. */
  12. @Mapper
  13. public interface OutsideAssociationsMapper extends MPJBaseMapper<OutsideAssociations> {
  14. }