From 16d10cef208de048f8b325facd143c54b7be9963 Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期五, 31 五月 2024 11:53:39 +0800 Subject: [PATCH] 重构:lombok、vo、mybatisplus、beanutils、包名 --- src/main/java/com/ycl/jxkg/service/ExamPaperQuestionCustomerAnswerService.java | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/ycl/jxkg/service/ExamPaperQuestionCustomerAnswerService.java b/src/main/java/com/ycl/jxkg/service/ExamPaperQuestionCustomerAnswerService.java index fabed4f..8663878 100644 --- a/src/main/java/com/ycl/jxkg/service/ExamPaperQuestionCustomerAnswerService.java +++ b/src/main/java/com/ycl/jxkg/service/ExamPaperQuestionCustomerAnswerService.java @@ -2,15 +2,15 @@ import com.ycl.jxkg.domain.ExamPaperQuestionCustomerAnswer; import com.ycl.jxkg.domain.other.ExamPaperAnswerUpdate; -import com.ycl.jxkg.viewmodel.student.exam.ExamPaperSubmitItemVM; -import com.ycl.jxkg.viewmodel.student.question.answer.QuestionPageStudentRequestVM; +import com.ycl.jxkg.vo.student.exam.ExamPaperSubmitItemVO; +import com.ycl.jxkg.vo.student.question.answer.QuestionPageStudentRequestVO; import com.github.pagehelper.PageInfo; import java.util.List; public interface ExamPaperQuestionCustomerAnswerService extends BaseService<ExamPaperQuestionCustomerAnswer> { - PageInfo<ExamPaperQuestionCustomerAnswer> studentPage(QuestionPageStudentRequestVM requestVM); + PageInfo<ExamPaperQuestionCustomerAnswer> studentPage(QuestionPageStudentRequestVO requestVM); List<ExamPaperQuestionCustomerAnswer> selectListByPaperAnswerId(Integer id); @@ -27,7 +27,7 @@ * @param qa ExamPaperQuestionCustomerAnswer * @return ExamPaperSubmitItemVM */ - ExamPaperSubmitItemVM examPaperQuestionCustomerAnswerToVM(ExamPaperQuestionCustomerAnswer qa); + ExamPaperSubmitItemVO examPaperQuestionCustomerAnswerToVM(ExamPaperQuestionCustomerAnswer qa); Integer selectAllCount(); -- Gitblit v1.8.0