StudentLeaveMapper.java 419 B

12345678910111213141516
  1. package com.xjrsoft.module.student.mapper;
  2. import com.github.yulichang.base.MPJBaseMapper;
  3. import com.xjrsoft.module.student.entity.StudentDropOut;
  4. import com.xjrsoft.module.student.entity.StudentLeave;
  5. import org.apache.ibatis.annotations.Mapper;
  6. /**
  7. * @title: 退学申请
  8. * @Author dzx
  9. * @Date: 2024年4月17日
  10. * @Version 1.0
  11. */
  12. @Mapper
  13. public interface StudentLeaveMapper extends MPJBaseMapper<StudentLeave> {
  14. }