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/mapper/ExamPaperQuestionCustomerAnswerMapper.java | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/ycl/jxkg/repository/ExamPaperQuestionCustomerAnswerMapper.java b/src/main/java/com/ycl/jxkg/mapper/ExamPaperQuestionCustomerAnswerMapper.java similarity index 84% rename from src/main/java/com/ycl/jxkg/repository/ExamPaperQuestionCustomerAnswerMapper.java rename to src/main/java/com/ycl/jxkg/mapper/ExamPaperQuestionCustomerAnswerMapper.java index 8df70ef..2f26bc0 100644 --- a/src/main/java/com/ycl/jxkg/repository/ExamPaperQuestionCustomerAnswerMapper.java +++ b/src/main/java/com/ycl/jxkg/mapper/ExamPaperQuestionCustomerAnswerMapper.java @@ -1,9 +1,9 @@ -package com.ycl.jxkg.repository; +package com.ycl.jxkg.mapper; import com.ycl.jxkg.domain.ExamPaperQuestionCustomerAnswer; import com.ycl.jxkg.domain.other.ExamPaperAnswerUpdate; import com.ycl.jxkg.domain.other.KeyValue; -import com.ycl.jxkg.viewmodel.student.question.answer.QuestionPageStudentRequestVM; +import com.ycl.jxkg.vo.student.question.answer.QuestionPageStudentRequestVO; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; @@ -15,7 +15,7 @@ List<ExamPaperQuestionCustomerAnswer> selectListByPaperAnswerId(Integer id); - List<ExamPaperQuestionCustomerAnswer> studentPage(QuestionPageStudentRequestVM requestVM); + List<ExamPaperQuestionCustomerAnswer> studentPage(QuestionPageStudentRequestVO requestVM); int insertList(List<ExamPaperQuestionCustomerAnswer> list); -- Gitblit v1.8.0