File was renamed from src/main/java/com/ycl/jxkg/service/ExamPaperAnswerService.java |
| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.github.pagehelper.PageInfo; |
| | | import com.ycl.jxkg.domain.ExamPaperAnswerInfo; |
| | | import com.ycl.jxkg.domain.entity.ExamPaperAnswer; |
| | | import com.ycl.jxkg.domain.entity.ExamPaperScore; |
| | | import com.ycl.jxkg.domain.entity.User; |
| | | import com.ycl.jxkg.domain.vo.admin.paper.ExamPaperAnswerPageRequestVO; |
| | | import com.ycl.jxkg.domain.vo.student.exam.ExamPaperSubmitVO; |
| | |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface ExamPaperAnswerService extends IService<ExamPaperAnswer> { |
| | | public interface ExamPaperScoreService extends IService<ExamPaperScore> { |
| | | |
| | | /** |
| | | * 学生考试记录分页 |
| | |
| | | * @param requestVM 过滤条件 |
| | | * @return PageInfo<ExamPaperAnswer> |
| | | */ |
| | | PageInfo<ExamPaperAnswer> studentPage(ExamPaperAnswerPageVO requestVM); |
| | | PageInfo<ExamPaperScore> studentPage(ExamPaperAnswerPageVO requestVM); |
| | | |
| | | /** |
| | | * 计算试卷提交结果(不入库) |