From 47cd9ecc0eff38ffe6b3b794b2bf197e958f4403 Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期三, 14 五月 2025 15:50:57 +0800 Subject: [PATCH] bug:学员有状态不能修改问题 --- src/main/java/com/mindskip/xzs/service/ExamPaperQuestionCustomerAnswerService.java | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/main/java/com/mindskip/xzs/service/ExamPaperQuestionCustomerAnswerService.java b/src/main/java/com/mindskip/xzs/service/ExamPaperQuestionCustomerAnswerService.java index 375c198..27cc83e 100644 --- a/src/main/java/com/mindskip/xzs/service/ExamPaperQuestionCustomerAnswerService.java +++ b/src/main/java/com/mindskip/xzs/service/ExamPaperQuestionCustomerAnswerService.java @@ -5,12 +5,13 @@ import com.mindskip.xzs.viewmodel.student.exam.ExamPaperSubmitItemVM; import com.mindskip.xzs.viewmodel.student.question.answer.QuestionPageStudentRequestVM; import com.github.pagehelper.PageInfo; +import com.mindskip.xzs.viewmodel.student.question.answer.QuestionPageStudentResponseVM; import java.util.List; public interface ExamPaperQuestionCustomerAnswerService extends BaseService<ExamPaperQuestionCustomerAnswer> { - PageInfo<ExamPaperQuestionCustomerAnswer> studentPage(QuestionPageStudentRequestVM requestVM); + PageInfo<QuestionPageStudentResponseVM> studentPage(QuestionPageStudentRequestVM requestVM); List<ExamPaperQuestionCustomerAnswer> selectListByPaperAnswerId(Integer id); -- Gitblit v1.8.0