StudentLiveOldMapper.java 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. package com.ruoyi.system.mapper;
  2. import java.util.List;
  3. import com.ruoyi.system.domain.StudentLiveOld;
  4. /**
  5. * 学生生活历史信息Mapper接口
  6. *
  7. * @author ruoyi
  8. * @date 2023-08-03
  9. */
  10. public interface StudentLiveOldMapper
  11. {
  12. /**
  13. * 查询学生生活历史信息
  14. *
  15. * @param liveId 学生生活历史信息主键
  16. * @return 学生生活历史信息
  17. */
  18. public StudentLiveOld selectStudentLiveOldByLiveId(Long liveId);
  19. /**
  20. * 查询学生生活历史信息列表
  21. *
  22. * @param studentLiveOld 学生生活历史信息
  23. * @return 学生生活历史信息集合
  24. */
  25. public List<StudentLiveOld> selectStudentLiveOldList(StudentLiveOld studentLiveOld);
  26. /**
  27. * 新增学生生活历史信息
  28. *
  29. * @param studentLiveOld 学生生活历史信息
  30. * @return 结果
  31. */
  32. public int insertStudentLiveOld(StudentLiveOld studentLiveOld);
  33. /**
  34. * 修改学生生活历史信息
  35. *
  36. * @param studentLiveOld 学生生活历史信息
  37. * @return 结果
  38. */
  39. public int updateStudentLiveOld(StudentLiveOld studentLiveOld);
  40. /**
  41. * 删除学生生活历史信息
  42. *
  43. * @param liveId 学生生活历史信息主键
  44. * @return 结果
  45. */
  46. public int deleteStudentLiveOldByLiveId(Long liveId);
  47. /**
  48. * 批量删除学生生活历史信息
  49. *
  50. * @param liveIds 需要删除的数据主键集合
  51. * @return 结果
  52. */
  53. public int deleteStudentLiveOldByLiveIds(Long[] liveIds);
  54. List<StudentLiveOld> selectStudentLiveOldListEcharts(StudentLiveOld studentLiveOld);
  55. }