| 12345678910111213141516171819202122 |
- 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<Long, ExamLifecycleLog> implements ExamLifecycleLogService {
-
- @Autowired
- private ExamLifecycleLogDao examLifecycleLogDao;
- @Override
- public BaseDAO<Long, ExamLifecycleLog> getDAO() {
- return examLifecycleLogDao;
- }
-
- }
|