UserStudentMapper.java 365 B

12345678910
  1. package com.xjrsoft.module.organization.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.github.yulichang.base.MPJBaseMapper;
  4. import com.xjrsoft.module.organization.entity.UserStudent;
  5. import org.apache.ibatis.annotations.Mapper;
  6. @Mapper
  7. public interface UserStudentMapper extends BaseMapper<UserStudent>, MPJBaseMapper<UserStudent> {
  8. }