BaseStudentAssessmentInspectionMapper.java 426 B

12345678910111213141516
  1. package com.xjrsoft.module.student.mapper;
  2. import com.github.yulichang.base.MPJBaseMapper;
  3. import com.xjrsoft.module.student.entity.BaseStudentAssessmentInspection;
  4. import org.apache.ibatis.annotations.Mapper;
  5. /**
  6. * @title: 学生班级巡查考核
  7. * @Author dzx
  8. * @Date: 2023-11-16
  9. * @Version 1.0
  10. */
  11. @Mapper
  12. public interface BaseStudentAssessmentInspectionMapper extends MPJBaseMapper<BaseStudentAssessmentInspection> {
  13. }