123456789101112131415161718192021222324 |
- package com.xjrsoft.module.teacher.mapper;
- import com.github.yulichang.base.MPJBaseMapper;
- import com.xjrsoft.module.teacher.entity.XjrUser;
- import org.apache.ibatis.annotations.Mapper;
- import java.util.List;
- /**
- * @title: mapper
- * @Author 管理员
- * @Date: 2023-08-08
- * @Version 1.0
- */
- @Mapper
- public interface XjrUserMapper extends MPJBaseMapper<XjrUser> {
- /**
- * 根据班级id查询学生用户编号
- * @param classId
- * @return
- */
- List<Long> getUserIdByClassId(Long classId);
- }
|