package com.ycl.jxkg.service.impl; import com.ycl.jxkg.domain.entity.ExamPaperQuestion; import com.ycl.jxkg.domain.vo.admin.paper.ExamPaperQuestionVO; import com.ycl.jxkg.mapper.ExamPaperQuestionMapper; import com.ycl.jxkg.service.ExamPaperQuestionService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @Service public class ExamPaperQuestionServiceImpl implements ExamPaperQuestionService { @Autowired private ExamPaperQuestionMapper examPaperQuestionMapper; @Override public ExamPaperQuestion selectById(Integer id) { return examPaperQuestionMapper.selectById(id); } }