fuliqi
2024-10-17 8546b3d285af4235a0ef615a0c6e89486ae2c806
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?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.TaskExamMapper">
    <resultMap id="BaseResultMap" type="com.ycl.jxkg.domain.entity.TaskExam">
        <id column="id" jdbcType="INTEGER" property="id"/>
        <result column="title" jdbcType="VARCHAR" property="title"/>
        <result column="grade_level" jdbcType="INTEGER" property="gradeLevel"/>
        <result column="frame_text_content_id" jdbcType="INTEGER" property="frameTextContentId"/>
        <result column="create_user" jdbcType="INTEGER" property="createUser"/>
        <result column="create_time" jdbcType="TIMESTAMP" property="createTime"/>
        <result column="deleted" jdbcType="BIT" property="deleted"/>
        <result column="create_user_name" jdbcType="VARCHAR" property="createUserName"/>
    </resultMap>
    <sql id="Base_Column_List">
        id
        , title, grade_level, frame_text_content_id, create_user, create_time, deleted,
    create_user_name
    </sql>
 
 
    <select id="page" resultMap="BaseResultMap" parameterType="com.ycl.jxkg.domain.vo.admin.task.TaskPageRequestVO">
        select
        <include refid="Base_Column_List"/>
        from t_task_exam
        <where>
            and deleted=0
            <if test="gradeLevel != null">
                and grade_level = #{gradeLevel}
            </if>
        </where>
    </select>
 
 
    <select id="getByGradeLevel" resultMap="BaseResultMap" parameterType="java.lang.Integer">
        select
        <include refid="Base_Column_List"/>
        from t_task_exam
        where deleted=0
        and grade_level = #{gradeLevel,jdbcType=INTEGER}
    </select>
 
</mapper>