XjrUserMapper.java 514 B

123456789101112131415161718192021222324
  1. package com.xjrsoft.module.teacher.mapper;
  2. import com.github.yulichang.base.MPJBaseMapper;
  3. import com.xjrsoft.module.teacher.entity.XjrUser;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import java.util.List;
  6. /**
  7. * @title: mapper
  8. * @Author 管理员
  9. * @Date: 2023-08-08
  10. * @Version 1.0
  11. */
  12. @Mapper
  13. public interface XjrUserMapper extends MPJBaseMapper<XjrUser> {
  14. /**
  15. * 根据班级id查询学生用户编号
  16. * @param classId
  17. * @return
  18. */
  19. List<Long> getUserIdByClassId(Long classId);
  20. }