From c6974a68972be7f26e61df42de7d9e1605379725 Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期一, 03 六月 2024 11:27:58 +0800
Subject: [PATCH] 分页工具类

---
 src/main/resources/mapper/QuestionMapper.xml |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/resources/mapper/QuestionMapper.xml b/src/main/resources/mapper/QuestionMapper.xml
index c647f09..f10a52b 100644
--- a/src/main/resources/mapper/QuestionMapper.xml
+++ b/src/main/resources/mapper/QuestionMapper.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
 <mapper namespace="com.ycl.jxkg.mapper.QuestionMapper">
-    <resultMap id="BaseResultMap" type="com.ycl.jxkg.domain.Question">
+    <resultMap id="BaseResultMap" type="com.ycl.jxkg.domain.entity.Question">
         <id column="id" jdbcType="INTEGER" property="id"/>
         <result column="question_type" jdbcType="INTEGER" property="questionType"/>
         <result column="subject_id" jdbcType="INTEGER" property="subjectId"/>
@@ -22,7 +22,7 @@
     </sql>
 
 
-    <select id="page" resultMap="BaseResultMap" parameterType="com.ycl.jxkg.vo.admin.question.QuestionPageRequestVO">
+    <select id="page" resultMap="BaseResultMap" parameterType="com.ycl.jxkg.domain.vo.admin.question.QuestionPageRequestVO">
         SELECT
         <include refid="Base_Column_List"/>
         FROM t_question

--
Gitblit v1.8.0