ExamLifecycleLogServiceImpl.java 706 B

12345678910111213141516171819202122
  1. package com.keao.edu.user.service.impl;
  2. import com.keao.edu.common.dal.BaseDAO;
  3. import com.keao.edu.common.service.impl.BaseServiceImpl;
  4. import com.keao.edu.user.dao.ExamLifecycleLogDao;
  5. import com.keao.edu.user.entity.ExamLifecycleLog;
  6. import com.keao.edu.user.service.ExamLifecycleLogService;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.stereotype.Service;
  9. @Service
  10. public class ExamLifecycleLogServiceImpl extends BaseServiceImpl<Long, ExamLifecycleLog> implements ExamLifecycleLogService {
  11. @Autowired
  12. private ExamLifecycleLogDao examLifecycleLogDao;
  13. @Override
  14. public BaseDAO<Long, ExamLifecycleLog> getDAO() {
  15. return examLifecycleLogDao;
  16. }
  17. }