| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- package com.ruoyi.learn.mapper;
- import java.util.List;
- import java.util.Map;
- import com.ruoyi.learn.domain.LearnTestStudent;
- /**
- * 测试学生Mapper接口
- *
- * @author ruoyi
- * @date 2025-09-18
- */
- public interface LearnTestStudentMapper
- {
- List<LearnTestStudent> selectStatsForStudent(Long studentId);
- /**
- * 查询测试学生
- *
- * @param id 测试学生主键
- * @return 测试学生
- */
- public LearnTestStudent selectLearnTestStudentById(String id);
- /**
- * 查询测试学生列表
- *
- * @param learnTestStudent 测试学生
- * @return 测试学生集合
- */
- public List<LearnTestStudent> selectLearnTestStudentList(LearnTestStudent learnTestStudent);
- /**
- * 新增测试学生
- *
- * @param learnTestStudent 测试学生
- * @return 结果
- */
- public int insertLearnTestStudent(LearnTestStudent learnTestStudent);
- /**
- * 修改测试学生
- *
- * @param learnTestStudent 测试学生
- * @return 结果
- */
- public int updateLearnTestStudent(LearnTestStudent learnTestStudent);
- /**
- * 删除测试学生
- *
- * @param id 测试学生主键
- * @return 结果
- */
- public int deleteLearnTestStudentById(String id);
- /**
- * 批量删除测试学生
- *
- * @param ids 需要删除的数据主键集合
- * @return 结果
- */
- public int deleteLearnTestStudentByIds(String[] ids);
- }
|