BaseTeacherContactMapper.java 375 B

12345678910111213141516
  1. package com.xjrsoft.module.teacher.mapper;
  2. import com.github.yulichang.base.MPJBaseMapper;
  3. import com.xjrsoft.module.teacher.entity.BaseTeacherContact;
  4. import org.apache.ibatis.annotations.Mapper;
  5. /**
  6. * @title: mapper
  7. * @Author 管理员
  8. * @Date: 2023-08-08
  9. * @Version 1.0
  10. */
  11. @Mapper
  12. public interface BaseTeacherContactMapper extends MPJBaseMapper<BaseTeacherContact> {
  13. }