123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- package com.ruoyi.system.mapper;
- import java.util.List;
- import com.ruoyi.system.domain.StudentLiveOld;
- /**
- * 学生生活历史信息Mapper接口
- *
- * @author ruoyi
- * @date 2023-08-03
- */
- public interface StudentLiveOldMapper
- {
- /**
- * 查询学生生活历史信息
- *
- * @param liveId 学生生活历史信息主键
- * @return 学生生活历史信息
- */
- public StudentLiveOld selectStudentLiveOldByLiveId(Long liveId);
- /**
- * 查询学生生活历史信息列表
- *
- * @param studentLiveOld 学生生活历史信息
- * @return 学生生活历史信息集合
- */
- public List<StudentLiveOld> selectStudentLiveOldList(StudentLiveOld studentLiveOld);
- /**
- * 新增学生生活历史信息
- *
- * @param studentLiveOld 学生生活历史信息
- * @return 结果
- */
- public int insertStudentLiveOld(StudentLiveOld studentLiveOld);
- /**
- * 修改学生生活历史信息
- *
- * @param studentLiveOld 学生生活历史信息
- * @return 结果
- */
- public int updateStudentLiveOld(StudentLiveOld studentLiveOld);
- /**
- * 删除学生生活历史信息
- *
- * @param liveId 学生生活历史信息主键
- * @return 结果
- */
- public int deleteStudentLiveOldByLiveId(Long liveId);
- /**
- * 批量删除学生生活历史信息
- *
- * @param liveIds 需要删除的数据主键集合
- * @return 结果
- */
- public int deleteStudentLiveOldByLiveIds(Long[] liveIds);
- List<StudentLiveOld> selectStudentLiveOldListEcharts(StudentLiveOld studentLiveOld);
- }
|