| | |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import org.springblade.modules.apply.entity.Apply; |
| | | import org.springblade.modules.exam.entity.ExamPaper; |
| | | import org.springblade.modules.exam.mapper.ExamPaperMapper; |
| | | import org.springblade.modules.exam.service.ExamPaperService; |
| | |
| | | return baseMapper.UnbindSubject(paperid,subjectid); |
| | | } |
| | | |
| | | /** |
| | | * 根据用户id查询报名信息 |
| | | * @param userId 用户id |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<Apply> getApplyDetail(String userId) { |
| | | return baseMapper.getApplyDetail(userId); |
| | | } |
| | | |
| | | } |