be2f84a1
孙向锦
添加课后作业基础模块数据
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?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="HomeworkProblemMapper">
<!--表名 -->
<sql id="tableName">
SV_HOMEWORKPROBLEM
</sql>
<!-- 字段 -->
<sql id="Field">
CODE,
RANK,
P_HOMEWORK_PROBLEM_ID,
NAME,
TYPE,
OPTION_NUM,
RIGHT_ANSWER,
SCORE,
PART_SCORE,
|
416902b7
孙向锦
添加课后作业部分API
|
21
|
HOMEWORK_ID,
|
be2f84a1
孙向锦
添加课后作业基础模块数据
|
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
HOMEWORKPROBLEM_ID
</sql>
<!-- 字段值 -->
<sql id="FieldValue">
#{CODE},
#{RANK},
#{P_HOMEWORK_PROBLEM_ID},
#{NAME},
#{TYPE},
#{OPTION_NUM},
#{RIGHT_ANSWER},
#{SCORE},
#{PART_SCORE},
|
416902b7
孙向锦
添加课后作业部分API
|
36
|
#{HOMEWORK_ID},
|
be2f84a1
孙向锦
添加课后作业基础模块数据
|
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
#{HOMEWORKPROBLEM_ID}
</sql>
<!-- 新增-->
<insert id="save" parameterType="pd">
insert into
<include refid="tableName"></include>
(
<include refid="Field"></include>
) values (
<include refid="FieldValue"></include>
)
</insert>
<!-- 删除-->
<delete id="delete" parameterType="pd">
delete from
<include refid="tableName"></include>
where
HOMEWORKPROBLEM_ID = #{HOMEWORKPROBLEM_ID}
</delete>
|
2c6bc93d
孙向锦
更新作业
|
59
60
61
62
63
64
65
66
|
<!-- 删除-->
<delete id="deleteByCode" parameterType="pd">
delete from
<include refid="tableName"></include>
where
HOMEWORK_ID = #{CODE}
</delete>
|
be2f84a1
孙向锦
添加课后作业基础模块数据
|
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
<!-- 修改 -->
<update id="edit" parameterType="pd">
update
<include refid="tableName"></include>
set
CODE = #{CODE},
RANK = #{RANK},
P_HOMEWORK_PROBLEM_ID = #{P_HOMEWORK_PROBLEM_ID},
NAME = #{NAME},
TYPE = #{TYPE},
OPTION_NUM = #{OPTION_NUM},
RIGHT_ANSWER = #{RIGHT_ANSWER},
SCORE = #{SCORE},
PART_SCORE = #{PART_SCORE},
|
416902b7
孙向锦
添加课后作业部分API
|
81
|
HOMEWORK_ID = #{HOMEWORK_ID},
|
be2f84a1
孙向锦
添加课后作业基础模块数据
|
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
HOMEWORKPROBLEM_ID = HOMEWORKPROBLEM_ID
where
HOMEWORKPROBLEM_ID = #{HOMEWORKPROBLEM_ID}
</update>
<!-- 通过ID获取数据 -->
<select id="findById" parameterType="pd" resultType="pd">
select
<include refid="Field"></include>
from
<include refid="tableName"></include>
where
HOMEWORKPROBLEM_ID = #{HOMEWORKPROBLEM_ID}
</select>
|
6de2192e
孙向锦
答案统计
|
97
98
99
100
101
102
103
104
105
106
|
<select id="findByCodeAndRank" parameterType="pd" resultType="pd">
select
<include refid="Field"></include>
from
<include refid="tableName"></include>
where
CODE = #{CODE},
and RANK = #{RANK}
</select>
|
be2f84a1
孙向锦
添加课后作业基础模块数据
|
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
<!-- 列表 -->
<select id="datalistPage" parameterType="page" resultType="pd">
select
<include refid="Field"></include>
from
<include refid="tableName"></include>
where 1=1
<if test="pd.keywords!= null and pd.keywords != ''"><!-- 关键词检索 -->
and
(
<!-- 根据需求自己加检索条件
字段1 LIKE CONCAT(CONCAT('%', #{pd.keywords}),'%')
or
字段2 LIKE CONCAT(CONCAT('%', #{pd.keywords}),'%')
-->
)
</if>
</select>
<!-- 列表(全部) -->
<select id="listAll" parameterType="pd" resultType="pd">
select
<include refid="Field"></include>
from
<include refid="tableName"></include>
</select>
|
416902b7
孙向锦
添加课后作业部分API
|
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
<!-- 列表(全部) -->
<select id="listHomeworkProblem" parameterType="pd" resultType="pd">
select
<include refid="Field"></include>
from
<include refid="tableName"></include>
where 1 = 1
<if test="pd.HOMEWORK_ID != null and pd.HOMEWORK_ID != ''">
and HOMEWORK_ID = #{pd.HOMEWORK_ID}
</if>
ORDER BY RANK
</select>
<!-- 列表(全部) -->
<select id="listProblem" parameterType="pd" resultType="pd">
select
|
015d5970
孙向锦
更新删除接口
|
150
|
HOMEWORKPROBLEM_ID,
|
a479f295
孙向锦
添加了报表逻辑
|
151
152
153
154
155
|
RANK,
NAME,
OPTION_NUM,
SCORE,
RIGHT_ANSWER
|
416902b7
孙向锦
添加课后作业部分API
|
156
157
158
|
from
<include refid="tableName"></include>
where 1 = 1
|
5162dcee
孙向锦
添加上传作业接口
|
159
160
|
<if test="CODE != null and CODE != ''">
and CODE = #{CODE}
|
416902b7
孙向锦
添加课后作业部分API
|
161
|
</if>
|
a479f295
孙向锦
添加了报表逻辑
|
162
|
<if test="P_HOMEWORK_PROBLEM_ID == null or P_HOMEWORK_PROBLEM_ID == ''">
|
416902b7
孙向锦
添加课后作业部分API
|
163
164
|
and P_HOMEWORK_PROBLEM_ID is NULL
</if>
|
a479f295
孙向锦
添加了报表逻辑
|
165
166
|
<if test="P_HOMEWORK_PROBLEM_ID != null and P_HOMEWORK_PROBLEM_ID != ''">
and P_HOMEWORK_PROBLEM_ID = #{P_HOMEWORK_PROBLEM_ID}
|
416902b7
孙向锦
添加课后作业部分API
|
167
168
169
170
|
</if>
ORDER BY RANK
</select>
|
be2f84a1
孙向锦
添加课后作业基础模块数据
|
171
172
173
174
175
176
177
178
179
180
181
182
183
|
<!-- 批量删除 -->
<delete id="deleteAll" parameterType="String">
delete from
<include refid="tableName"></include>
where
HOMEWORKPROBLEM_ID in
<foreach item="item" index="index" collection="array" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<!-- fh313596790qq(青苔) -->
</mapper>
|