bug
lohir
2024-10-16 1aa33a1458ccb6c151871f00a3374c6cf9e68bdb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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);
    }
}