ExerciseDoneHistoryMapper.java 1.71 KB
package com.meishu.mapper;

import com.meishu.dto.task.ClassDoneInfoDTO;
import com.meishu.dto.task.ExesDoneInfoPO;
import com.meishu.dto.task.PerStudentExesDTO;
import com.meishu.dto.task.PerStudentExesRequestVO;
import com.meishu.model.ExerciseDoneHistoryDO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.meishu.vo.task.ClassDoneInfoVO;
import com.meishu.vo.task.GetClassExeDoneInfoRequestVO;
import com.meishu.vo.task.GetClassExeDoneInfoResponseVO;
import com.meishu.vo.task.PerStuExeDoneResponseVO;
import org.springframework.stereotype.Repository;

import java.util.List;

/**
 * <p>
 * 学生做题记录表 Mapper 接口
 * </p>
 *
 * @author Tuyp
 * @since 2021-04-27
 */
 @Repository
public interface ExerciseDoneHistoryMapper extends BaseMapper<ExerciseDoneHistoryDO> {

 /**
  * 获取班级某个关联习题做题情况
  * @return
  */
 List<PerStuExeDoneResponseVO> perStudentRelateExes(PerStudentExesDTO perStudentExesRequestVO);

 /**
  * 获取关联/拓展题组做题情况
  */
 List<ClassDoneInfoVO> classDoneInfo(ClassDoneInfoDTO classDoneInfoPO);

 /**
  * 获取某题目组做题情况
  */
 List<ClassDoneInfoVO> exesDoneInfo(ExesDoneInfoPO exesDoneInfoPO);

 /**
  * 个人关联习题完成度明细
  * @param getClassExeDoneInfoVO
  * @return
  */
 List<GetClassExeDoneInfoResponseVO> getRelateExeDoneInfo(GetClassExeDoneInfoRequestVO getClassExeDoneInfoVO);

 /**
  * 个人拓展习题完成度明细
  */
 List<GetClassExeDoneInfoResponseVO> getExpandingExeDoneInfo(GetClassExeDoneInfoRequestVO getClassExeDoneInfoRequestVO);


 /**
  * 获取班级某个拓展习题组做题情况
  */
 List<PerStuExeDoneResponseVO> perStudentExpandingExes(PerStudentExesRequestVO perStudentExesRequestVO);
}