From 9d72545e1ebb81d80d11b6a6e683e5581cc322fc Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期一, 03 六月 2024 14:56:31 +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