HomeworkMapper.xml
9.28 KB
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
104
105
106
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
<?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="HomeworkMapper">
<!--表名 -->
<sql id="tableName">
SV_HOMEWORK
</sql>
<!-- 字段 -->
<sql id="Field">
CODE,
NAME,
SUBJECT_ID,
CLASS_ID,
GRADE_ID,
SCHOOL_ID,
COMPLETE_DATE,
CREATE_DATE,
MODIFY_DATE,
COMPLETE_COUNT,
ALL_SCORE,
TEACHER_ID,
HOMEWORK_DESC,
COMPLETE_DESC,
SUMBIT_DATE,
GET_SCORE,
GET_SCORE_PERSENT,
GET_MAX_SCORE,
QUESTION_COUNT,
HOMEWORK_ID
</sql>
<!-- 字段值 -->
<sql id="FieldValue">
#{CODE},
#{NAME},
#{SUBJECT_ID},
#{CLASS_ID},
#{GRADE_ID},
#{SCHOOL_ID},
#{COMPLETE_DATE},
#{CREATE_DATE},
#{MODIFY_DATE},
#{COMPLETE_COUNT},
#{ALL_SCORE},
#{TEACHER_ID},
#{HOMEWORK_DESC},
#{COMPLETE_DESC},
#{SUMBIT_DATE},
#{GET_SCORE},
#{GET_SCORE_PERSENT},
#{GET_MAX_SCORE},
#{QUESTION_COUNT},
#{HOMEWORK_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
HOMEWORK_ID = #{HOMEWORK_ID}
</delete>
<!-- 修改 -->
<update id="edit" parameterType="pd">
update
<include refid="tableName"></include>
set
<if test="CODE != null and CODE != ''">
CODE = #{CODE},
</if><if test="NAME != null and NAME != ''">
NAME = #{NAME},
</if><if test="SUBJECT_ID != null and SUBJECT_ID != ''">
SUBJECT_ID = #{SUBJECT_ID},
</if><if test="CLASS_ID != null and CLASS_ID != ''">
CLASS_ID = #{CLASS_ID},
</if><if test="GRADE_ID != null and GRADE_ID != ''">
GRADE_ID = #{GRADE_ID},
</if><if test="SCHOOL_ID != null and SCHOOL_ID != ''">
SCHOOL_ID = #{SCHOOL_ID},
</if><if test="COMPLETE_DATE != null and COMPLETE_DATE != ''">
COMPLETE_DATE = #{COMPLETE_DATE},
</if><if test="CREATE_DATE != null and CREATE_DATE != ''">
CREATE_DATE = #{CREATE_DATE},
</if><if test="MODIFY_DATE != null and MODIFY_DATE != ''">
MODIFY_DATE = #{MODIFY_DATE},
</if><if test="COMPLETE_COUNT != null and COMPLETE_COUNT != ''">
COMPLETE_COUNT = #{COMPLETE_COUNT},
</if><if test="ALL_SCORE != null and ALL_SCORE != ''">
ALL_SCORE = #{ALL_SCORE},
</if><if test="TEACHER_ID != null and TEACHER_ID != ''">
TEACHER_ID = #{TEACHER_ID},
</if><if test="HOMEWORK_DESC != null and HOMEWORK_DESC != ''">
HOMEWORK_DESC = #{HOMEWORK_DESC},
</if><if test="COMPLETE_DESC != null and COMPLETE_DESC != ''">
COMPLETE_DESC = #{COMPLETE_DESC},
</if><if test="SUMBIT_DATE != null and SUMBIT_DATE != ''">
SUMBIT_DATE = #{SUMBIT_DATE},
</if><if test="GET_SCORE != null and GET_SCORE != ''">
GET_SCORE = #{GET_SCORE},
</if><if test="GET_SCORE_PERSENT != null and GET_SCORE_PERSENT != ''">
GET_SCORE_PERSENT = #{GET_SCORE_PERSENT},
</if><if test="GET_MAX_SCORE != null and GET_MAX_SCORE != ''">
GET_MAX_SCORE = #{GET_MAX_SCORE},
</if><if test="QUESTION_COUNT != null and QUESTION_COUNT != ''">
QUESTION_COUNT = #{QUESTION_COUNT},
</if>
HOMEWORK_ID = HOMEWORK_ID
where
HOMEWORK_ID = #{HOMEWORK_ID}
</update>
<!-- 修改 -->
<update id="deleteHomework" parameterType="pd">
update
<include refid="tableName"></include>
set IS_DELETE = '1'
where
HOMEWORK_ID = #{HOMEWORK_ID}
</update>
<!-- 修改 -->
<update id="deleteHomeworkAll" parameterType="String">
update
<include refid="tableName"></include>
set IS_DELETE = '1'
where
HOMEWORK_ID in
<foreach item="item" index="index" collection="array" open="(" separator="," close=")">
#{item}
</foreach>
</update>
<!-- 通过ID获取数据 -->
<select id="findById" parameterType="pd" resultType="pd">
select
<include refid="Field"></include>
from
<include refid="tableName"></include>
where
HOMEWORK_ID = #{HOMEWORK_ID}
</select>
<!-- 通过ID获取数据 -->
<select id="findByCode" parameterType="pd" resultType="pd">
select
<include refid="Field"></include>
from
<include refid="tableName"></include>
where
CODE = #{CODE}
</select>
<!-- 列表 -->
<select id="datalistPage" parameterType="page" resultType="pd">
select
<include refid="Field"></include>
from
<include refid="tableName"></include>
where 1=1
<if test="pd.SUBJECT_ID != null and pd.SUBJECT_ID != ''"><!-- 关键词检索 -->
and SUBJECT_ID = #{pd.SUBJECT_ID}
</if>
<if test="pd.CLASS_ID != null and pd.CLASS_ID != ''"><!-- 关键词检索 -->
and CLASS_ID = #{pd.CLASS_ID}
</if>
<if test="pd.GRADE_ID != null and pd.GRADE_ID != ''"><!-- 关键词检索 -->
and GRADE_ID = #{pd.GRADE_ID}
</if>
<if test="pd.SCHOOL_ID != null and pd.SCHOOL_ID != ''"><!-- 关键词检索 -->
and SCHOOL_ID = #{pd.SCHOOL_ID}
</if>
<if test="pd.TEACHER_ID != null and pd.TEACHER_ID != ''"><!-- 关键词检索 -->
and TEACHER_ID = #{pd.TEACHER_ID}
</if>
<if test="pd.COMPLETE_DATE != null and pd.COMPLETE_DATE != ''"><!-- 关键词检索 -->
and COMPLETE_DATE = #{pd.COMPLETE_DATE}
</if>
<if test="pd.STARTDATE != null and pd.STARTDATE != ''"><!-- 关键词检索 -->
and COMPLETE_DATE > #{pd.STARTDATE}
</if>
<if test="pd.ENDDATE != null and pd.ENDDATE != ''"><!-- 关键词检索 -->
and COMPLETE_DATE < #{pd.ENDDATE}
</if>
and IS_DELETE is null
</select>
<!-- 列表(全部) -->
<select id="listAll" parameterType="pd" resultType="pd">
select
<include refid="Field"></include>
from
<include refid="tableName"></include>
where 1 = 1
<if test="SUBJECT_ID != null and SUBJECT_ID != ''"><!-- 关键词检索 -->
and SUBJECT_ID = #{SUBJECT_ID}
</if>
<if test="CLASS_ID != null and CLASS_ID != ''"><!-- 关键词检索 -->
and CLASS_ID = #{CLASS_ID}
</if>
<if test="GRADE_ID != null and GRADE_ID != ''"><!-- 关键词检索 -->
and GRADE_ID = #{GRADE_ID}
</if>
<if test="SCHOOL_ID != null and SCHOOL_ID != ''"><!-- 关键词检索 -->
and SCHOOL_ID = #{SCHOOL_ID}
</if>
<if test="TEACHER_ID != null and TEACHER_ID != ''"><!-- 关键词检索 -->
and TEACHER_ID = #{TEACHER_ID}
</if>
<if test="COMPLETE_DATE != null and COMPLETE_DATE != ''"><!-- 关键词检索 -->
and COMPLETE_DATE = #{COMPLETE_DATE}
</if>
<if test="START_DATE != null and START_DATE != ''"><!-- 关键词检索 -->
and COMPLETE_DATE < #{START_DATE}
</if>
<if test="END_DATE != null and END_DATE != ''"><!-- 关键词检索 -->
and COMPLETE_DATE < #{END_DATE}
</if>
ORDER BY COMPLETE_DATE DESC
</select>
<!-- 列表(全部) -->
<select id="qlistAll" parameterType="pd" resultType="pd">
select
COMPLETE_COUNT,
CODE,
NAME,
SUBJECT_ID,
CLASS_ID,
COMPLETE_DATE,
ALL_SCORE,
QUESTION_COUNT,
COMPLETE_DESC,
HOMEWORK_ID
from
<include refid="tableName"></include>
where 1 = 1
<if test="SUBJECT_ID != null and SUBJECT_ID != ''"><!-- 关键词检索 -->
and SUBJECT_ID = #{SUBJECT_ID}
</if>
<if test="CLASS_ID != null and CLASS_ID != ''"><!-- 关键词检索 -->
and CLASS_ID = #{CLASS_ID}
</if>
<if test="GRADE_ID != null and GRADE_ID != ''"><!-- 关键词检索 -->
and GRADE_ID = #{GRADE_ID}
</if>
<if test="SCHOOL_ID != null and SCHOOL_ID != ''"><!-- 关键词检索 -->
and SCHOOL_ID = #{SCHOOL_ID}
</if>
<if test="TEACHER_ID != null and TEACHER_ID != ''"><!-- 关键词检索 -->
and TEACHER_ID = #{TEACHER_ID}
</if>
<if test="COMPLETE != null and COMPLETE != ''"><!-- 关键词检索 -->
and COMPLETE_DATE > #{COMPLETE_DATE}
</if>
and IS_DELETE is null
</select>
<!-- 批量删除 -->
<delete id="deleteAll" parameterType="String">
delete from
<include refid="tableName"></include>
where
HOMEWORK_ID in
<foreach item="item" index="index" collection="array" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<select id="report" parameterType="pd" resultType="pd">
SELECT
sv_homeworkreport.STUDENT_ID,
sv_homeworkreport.STUDENT_NAME,
sv_homework.ALL_SCORE as PAPER_SCORE,
sv_homework.GET_SCORE as AVG_SCORE,
sv_homework.HOMEWORK_ID,
sv_homework.NAME,
sv_homework.GET_MAX_SCORE,
sv_homeworkreport.STUDNET_NO,
sv_homework.COMPLETE_DATE,
sv_homeworkreport.GET_SCORE as STUDENT_SCORE
FROM
sv_homework
LEFT JOIN sv_homeworkreport ON sv_homework.HOMEWORK_ID = sv_homeworkreport.HOMEWORK_ID
WHERE
sv_homework.COMPLETE_COUNT > 0
<if test="CLASS_ID != null and CLASS_ID != ''"><!-- 关键词检索 -->
and sv_homework.CLASS_ID = #{CLASS_ID}
</if>
<if test="HOMEWORK_ID != null and HOMEWORK_ID != ''"><!-- 关键词检索 -->
and sv_homework.HOMEWORK_ID = #{HOMEWORK_ID}
</if>
<if test="STUDENT_ID != null and STUDENT_ID != ''"><!-- 关键词检索 -->
and STUDENT_ID = #{STUDENT_ID}
</if>
<if test="START_DATE != null and START_DATE != ''"><!-- 关键词检索 -->
and COMPLETE_DATE < #{START_DATE}
</if>
<if test="END_DATE != null and END_DATE != ''"><!-- 关键词检索 -->
and COMPLETE_DATE < #{END_DATE}
</if>
ORDER BY sv_homework.COMPLETE_DATE ,sv_homework.HOMEWORK_ID,sv_homeworkreport.STUDNET_NO
</select>
<!-- fh313596790qq(青苔) -->
</mapper>