ILearnTestStudentService.java 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package com.ruoyi.learn.service;
  2. import java.util.List;
  3. import com.ruoyi.learn.domain.LearnTestStudent;
  4. /**
  5. * 测试学生Service接口
  6. *
  7. * @author ruoyi
  8. * @date 2025-09-18
  9. */
  10. public interface ILearnTestStudentService
  11. {
  12. /**
  13. * 查询测试学生
  14. *
  15. * @param id 测试学生主键
  16. * @return 测试学生
  17. */
  18. public LearnTestStudent selectLearnTestStudentById(String id);
  19. /**
  20. * 查询测试学生列表
  21. *
  22. * @param learnTestStudent 测试学生
  23. * @return 测试学生集合
  24. */
  25. public List<LearnTestStudent> selectLearnTestStudentList(LearnTestStudent learnTestStudent);
  26. /**
  27. * 新增测试学生
  28. *
  29. * @param learnTestStudent 测试学生
  30. * @return 结果
  31. */
  32. public int insertLearnTestStudent(LearnTestStudent learnTestStudent);
  33. /**
  34. * 修改测试学生
  35. *
  36. * @param learnTestStudent 测试学生
  37. * @return 结果
  38. */
  39. public int updateLearnTestStudent(LearnTestStudent learnTestStudent);
  40. /**
  41. * 批量删除测试学生
  42. *
  43. * @param ids 需要删除的测试学生主键集合
  44. * @return 结果
  45. */
  46. public int deleteLearnTestStudentByIds(String[] ids);
  47. /**
  48. * 删除测试学生信息
  49. *
  50. * @param id 测试学生主键
  51. * @return 结果
  52. */
  53. public int deleteLearnTestStudentById(String id);
  54. }