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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
| <?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.ExamTemplateMapper">
|
| <!-- 通用查询映射结果 -->
| <resultMap id="BaseResultMap" type="com.ycl.jxkg.domain.entity.ExamTemplate">
| <result column="name" property="name" />
| <result column="subject_id" property="subjectId" />
| <result column="score" property="score" />
| <result column="visibility" property="visibility" />
| <result column="suggest_time" property="suggestTime" />
| <result column="deduct_type" property="deductType" />
| <result column="deduct_type_score" property="deductTypeScore" />
| <result column="single_choice" property="singleChoice" />
| <result column="multiple_choice" property="multipleChoice" />
| <result column="gap_filling" property="gapFilling" />
| <result column="true_false" property="trueFalse" />
| <result column="short_answer" property="shortAnswer" />
| <result column="calculation" property="calculation" />
| <result column="single_score" property="singleScore" />
| <result column="multiple_score" property="multipleScore" />
| <result column="gap_score" property="gapScore" />
| <result column="true_false_score" property="trueFalseScore" />
| <result column="short_answer_score" property="shortAnswerScore" />
| <result column="calculation__score" property="calculationScore" />
| <result column="create_user" property="createUser" />
| <result column="create_time" property="createTime" />
| </resultMap>
|
|
|
| <select id="getById" resultMap="BaseResultMap">
| SELECT
| TET.name,
| TET.subject_id,
| TET.score,
| TET.visibility,
| TET.suggest_time,
| TET.deduct_type,
| TET.deduct_type_score,
| TET.single_choice,
| TET.multiple_choice,
| TET.gap_filling,
| TET.true_false,
| TET.short_answer,
| TET.calculation,
| TET.single_score,
| TET.multiple_score,
| TET.gap_score,
| TET.true_false_score,
| TET.short_answer_score,
| TET.calculation__score,
| TET.create_user,
| TET.create_time,
| TET.id
| FROM
| t_exam_template TET
| WHERE
| TET.id = #{id} AND TET.deleted = 0
| </select>
|
|
| <select id="getPage" resultMap="BaseResultMap">
| SELECT
| TET.name,
| TET.subject_id,
| TET.score,
| TET.visibility,
| TET.suggest_time,
| TET.deduct_type,
| TET.deduct_type_score,
| TET.single_choice,
| TET.multiple_choice,
| TET.gap_filling,
| TET.true_false,
| TET.short_answer,
| TET.calculation,
| TET.single_score,
| TET.multiple_score,
| TET.gap_score,
| TET.true_false_score,
| TET.short_answer_score,
| TET.calculation__score,
| TET.create_user,
| TET.create_time,
| TET.id
| FROM
| t_exam_template TET
| <where>
| TET.deleted = 0
| <if test="query.name!=null and query.name !=''">
| and name like concat ('%',#{query.name},'%')
| </if>
| <if test="query.subjectId!=null ">
| and subject_id = #{query.subjectId}
| </if>
| </where>
| </select>
|
| <delete id="removeById">
| delete from t_exam_template where id = #{id}
| </delete>
| </mapper>
|
|