| | |
| | | package com.mindskip.xzs.service.impl; |
| | | |
| | | import com.mindskip.xzs.domain.ExamPaper; |
| | | import com.mindskip.xzs.domain.other.KeyValue; |
| | | import com.mindskip.xzs.domain.vo.UserVO; |
| | | import com.mindskip.xzs.exception.BusinessException; |
| | | import com.mindskip.xzs.domain.User; |
| | | import com.mindskip.xzs.event.OnRegistrationCompleteEvent; |
| | |
| | | public User getUserByRealName(String realName) { |
| | | return userMapper.getUserByRealName(realName); |
| | | } |
| | | |
| | | @Override |
| | | public void setStatus(UserVO user) { |
| | | userMapper.setStatus(user); |
| | | } |
| | | |
| | | @Override |
| | | public User getUserByExam(ExamPaper examPaper) { |
| | | return userMapper.getUserByExam(examPaper); |
| | | } |
| | | } |