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/ExamPaperMapper.xml |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/main/resources/mapper/ExamPaperMapper.xml b/src/main/resources/mapper/ExamPaperMapper.xml
index 8e25c94..cc9c2b4 100644
--- a/src/main/resources/mapper/ExamPaperMapper.xml
+++ b/src/main/resources/mapper/ExamPaperMapper.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.ExamPaperMapper">
-    <resultMap id="BaseResultMap" type="com.ycl.jxkg.domain.ExamPaper">
+    <resultMap id="BaseResultMap" type="com.ycl.jxkg.domain.entity.ExamPaper">
         <id column="id" jdbcType="INTEGER" property="id"/>
         <result column="name" jdbcType="VARCHAR" property="name"/>
         <result column="subject_id" jdbcType="INTEGER" property="subjectId"/>
@@ -26,7 +26,7 @@
     deleted, task_exam_id
     </sql>
 
-    <resultMap id="PaperInfoResultMap" type="com.ycl.jxkg.vo.student.dashboard.PaperInfo">
+    <resultMap id="PaperInfoResultMap" type="com.ycl.jxkg.domain.vo.student.dashboard.PaperInfo">
         <id column="id" jdbcType="INTEGER" property="id"/>
         <result column="name" jdbcType="VARCHAR" property="name"/>
         <result column="limit_start_time" jdbcType="TIMESTAMP" property="limitStartTime"/>
@@ -34,7 +34,7 @@
     </resultMap>
 
 
-    <select id="page" resultMap="BaseResultMap" parameterType="com.ycl.jxkg.vo.admin.exam.ExamPaperPageRequestVO">
+    <select id="page" resultMap="BaseResultMap" parameterType="com.ycl.jxkg.domain.vo.admin.exam.ExamPaperPageRequestVO">
         SELECT
         <include refid="Base_Column_List"/>
         FROM t_exam_paper
@@ -56,7 +56,7 @@
     </select>
 
     <select id="taskExamPage" resultMap="BaseResultMap"
-            parameterType="com.ycl.jxkg.vo.admin.exam.ExamPaperPageRequestVO">
+            parameterType="com.ycl.jxkg.domain.vo.admin.exam.ExamPaperPageRequestVO">
         SELECT
         <include refid="Base_Column_List"/>
         FROM t_exam_paper
@@ -68,7 +68,7 @@
         </where>
     </select>
 
-    <select id="studentPage" resultMap="BaseResultMap" parameterType="com.ycl.jxkg.vo.student.exam.ExamPaperPageVO">
+    <select id="studentPage" resultMap="BaseResultMap" parameterType="com.ycl.jxkg.domain.vo.student.exam.ExamPaperPageVO">
         SELECT
         <include refid="Base_Column_List"/>
         FROM t_exam_paper
@@ -85,7 +85,7 @@
     </select>
 
     <select id="indexPaper" resultMap="PaperInfoResultMap"
-            parameterType="com.ycl.jxkg.vo.student.dashboard.PaperFilter">
+            parameterType="com.ycl.jxkg.domain.vo.student.dashboard.PaperFilter">
         SELECT id,name,limit_start_time,limit_end_time
         FROM t_exam_paper
         <where>

--
Gitblit v1.8.0