BaseUserStudentMapper.java 338 B

12345678910111213
  1. package com.xjrsoft.module.base.mapper;
  2. import com.github.yulichang.base.MPJBaseMapper;
  3. import com.xjrsoft.module.base.entity.BaseClass;
  4. import com.xjrsoft.module.base.entity.BaseUserStudent;
  5. import org.apache.ibatis.annotations.Mapper;
  6. /**
  7. */
  8. @Mapper
  9. public interface BaseUserStudentMapper extends MPJBaseMapper<BaseUserStudent> {
  10. }