package com.keao.edu.user.service.impl; import com.keao.edu.common.dal.BaseDAO; import com.keao.edu.common.service.impl.BaseServiceImpl; import com.keao.edu.user.dao.ExamLifecycleLogDao; import com.keao.edu.user.entity.ExamLifecycleLog; import com.keao.edu.user.service.ExamLifecycleLogService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @Service public class ExamLifecycleLogServiceImpl extends BaseServiceImpl implements ExamLifecycleLogService { @Autowired private ExamLifecycleLogDao examLifecycleLogDao; @Override public BaseDAO getDAO() { return examLifecycleLogDao; } }