1234567891011121314 |
- package com.keao.edu.user.dao;
- import com.keao.edu.common.dal.BaseDAO;
- import com.keao.edu.user.dto.ExamLifecycleLogDto;
- import com.keao.edu.user.entity.ExamLifecycleLog;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- public interface ExamLifecycleLogDao extends BaseDAO<Long, ExamLifecycleLog> {
- List<ExamLifecycleLogDto> findWithExam(@Param("examId") Long examId);
-
- }
|