StudentReportPlanClassRelationMapper.java 424 B

12345678910111213141516
  1. package com.xjrsoft.module.student.mapper;
  2. import com.github.yulichang.base.MPJBaseMapper;
  3. import com.xjrsoft.module.student.entity.StudentReportPlanClassRelation;
  4. import org.apache.ibatis.annotations.Mapper;
  5. /**
  6. * @title: 学生报到计划-班级
  7. * @Author dzx
  8. * @Date: 2025-01-21
  9. * @Version 1.0
  10. */
  11. @Mapper
  12. public interface StudentReportPlanClassRelationMapper extends MPJBaseMapper<StudentReportPlanClassRelation> {
  13. }