BaseStudentFamilyMapper.java 378 B

12345678910111213141516
  1. package com.xjrsoft.module.student.mapper;
  2. import com.github.yulichang.base.MPJBaseMapper;
  3. import com.xjrsoft.module.student.entity.BaseStudentFamily;
  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 BaseStudentFamilyMapper extends MPJBaseMapper<BaseStudentFamily> {
  13. }