| 12345678910 |
- package com.xjrsoft.module.organization.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.github.yulichang.base.MPJBaseMapper;
- import com.xjrsoft.module.organization.entity.UserStudent;
- import org.apache.ibatis.annotations.Mapper;
- @Mapper
- public interface UserStudentMapper extends BaseMapper<UserStudent>, MPJBaseMapper<UserStudent> {
- }
|