| 1234567891011121314151617 |
- package com.xjrsoft.module.teacher.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.github.yulichang.base.MPJBaseMapper;
- import com.xjrsoft.module.teacher.entity.ProfessionalTitle;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * @title: 教职工职称信息
- * @Author szs
- * @Date: 2025-04-24
- * @Version 1.0
- */
- @Mapper
- public interface ProfessionalTitleMapper extends MPJBaseMapper<ProfessionalTitle> {
- }
|