| 1234567891011121314151617 |
- package com.xjrsoft.module.student.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.github.yulichang.base.MPJBaseMapper;
- import com.xjrsoft.module.student.entity.BaseStudentPunishmentInfo;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * @title: 学生处分信息管理
- * @Author dzx
- * @Date: 2023-11-15
- * @Version 1.0
- */
- @Mapper
- public interface BaseStudentPunishmentInfoMapper extends MPJBaseMapper<BaseStudentPunishmentInfo> {
- }
|