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 { List findWithExam(@Param("examId") Long examId); }