91a745c9
孙向锦
完善后台功能
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?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="StudentTestMapper">
<!--表名 -->
<sql id="tableName">
SV_STUDENTTEST
</sql>
<!-- 字段 -->
<sql id="Field">
STUDENT_ID,
TEST_ID,
PAPER_ID,
SCORE,
CLASS_ID,
|
579f3266
jack
1.studenttest增加增加...
|
17
18
|
STUDENTTEST_ID,
LOST_TEST
|
91a745c9
孙向锦
完善后台功能
|
19
20
21
22
23
24
25
26
27
|
</sql>
<!-- 字段值 -->
<sql id="FieldValue">
#{STUDENT_ID},
#{TEST_ID},
#{PAPER_ID},
#{SCORE},
#{CLASS_ID},
|
579f3266
jack
1.studenttest增加增加...
|
28
29
|
#{STUDENTTEST_ID},
#{LOST_TEST}
|
91a745c9
孙向锦
完善后台功能
|
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
</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>
|
2480c889
孙向锦
添加软件管理模块。对软件形成统一的管理
|
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
where 1 =1
<if test="STUDENTTEST_ID != null and STUDENTTEST_ID != ''">
and STUDENTTEST_ID = #{STUDENTTEST_ID}
</if>
<if test="STUDENT_ID != null and STUDENT_ID != ''">
and STUDENT_ID = #{STUDENT_ID}
</if>
<if test="TEST_ID != null and TEST_ID != ''">
and TEST_ID = #{TEST_ID}
</if>
<if test="PAPER_ID != null and PAPER_ID != ''">
and PAPER_ID = #{PAPER_ID}
</if>
<if test="CLASS_ID != null and CLASS_ID != ''">
and CLASS_ID = #{CLASS_ID}
</if>
|
91a745c9
孙向锦
完善后台功能
|
63
64
65
66
67
68
69
70
71
72
73
74
|
</delete>
<!-- 修改 -->
<update id="edit" parameterType="pd">
update
<include refid="tableName"></include>
set
STUDENT_ID = #{STUDENT_ID},
TEST_ID = #{TEST_ID},
PAPER_ID = #{PAPER_ID},
SCORE = #{SCORE},
CLASS_ID = #{CLASS_ID},
|
d9b2b420
孙向锦
提交数据 使用多线程
|
75
|
LOST_TEST = #{LOST_TEST},
|
91a745c9
孙向锦
完善后台功能
|
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
STUDENTTEST_ID = STUDENTTEST_ID
where
STUDENTTEST_ID = #{STUDENTTEST_ID}
</update>
<!-- 通过ID获取数据 -->
<select id="findById" parameterType="pd" resultType="pd">
select
<include refid="Field"></include>
from
<include refid="tableName"></include>
where
STUDENTTEST_ID = #{STUDENTTEST_ID}
</select>
|
58e024ae
jack
1.修改logo
|
91
92
93
94
95
|
<!-- 通过试卷ID获取数据 -->
<select id="findTestInfoByPid" parameterType="pd" resultType="pd">
select
sv_studenttest.STUDENT_ID,
sv_studenttest.TEST_ID,
|
89ac0783
jack
1.添加年级卷分析功能
|
96
|
sv_studenttest.PAPER_ID as PID,
|
58e024ae
jack
1.修改logo
|
97
98
99
100
101
102
103
|
sv_studenttest.SCORE,
sv_studenttest.CLASS_ID,
sv_studenttest.LOST_TEST,
sv_testpaper.AVG_SCORE,
sv_testpaper.CREATE_DATE,
sv_testpaper.`NAME` AS PAPER_NAME,
sv_sclass.CLASS_NAME,
|
001b21e2
jack
1.修改年级分析报表内容
|
104
105
106
|
sv_student.`NAME` as STUDENT_NAME,
sv_student.NUMBER AS STUDENT_NUMBER,
sv_student.KEYPAD_ID AS STUDENT_PADID
|
58e024ae
jack
1.修改logo
|
107
108
109
110
111
112
|
from
`sv_studenttest`
LEFT JOIN sv_testpaper ON sv_studenttest.TEST_ID = sv_testpaper.TESTPAPER_ID
LEFT JOIN sv_sclass on sv_studenttest.CLASS_ID = sv_sclass.ID
LEFT JOIN sv_student on sv_studenttest.STUDENT_ID = sv_student.ID
where
|
89ac0783
jack
1.添加年级卷分析功能
|
113
|
sv_studenttest.PAPER_ID = #{PAPER_ID}
|
78353cf9
jack
1.增加老师端可以看到年级卷
|
114
115
116
|
<if test="CLASS_ID != null and CLASS_ID != ''">
and sv_studenttest.CLASS_ID=#{CLASS_ID}
</if>
|
58e024ae
jack
1.修改logo
|
117
118
|
</select>
|
91a745c9
孙向锦
完善后台功能
|
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
|
<!-- 列表 -->
<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>
where 1= 1
<if test="TEST_ID != null and TEST_ID != ''"><!-- 关键词检索 -->
and (TEST_ID = #{TEST_ID})
</if>
<if test="PAPER_ID != null and PAPER_ID != ''"><!-- 关键词检索 -->
and (PAPER_ID = #{PAPER_ID})
</if>
<if test="CLASS_ID != null and CLASS_ID != ''"><!-- 关键词检索 -->
and (CLASS_ID = #{CLASS_ID})
</if>
<if test="STUDENT_ID != null and STUDENT_ID != ''"><!-- 关键词检索 -->
and (STUDENT_ID = #{STUDENT_ID})
</if>
|
9338b563
孙向锦
添加报表
|
160
161
162
163
164
|
</select>
<select id="reportListData" parameterType="pd" resultType="pd">
|
4d39642d
孙向锦
添加学生报表
|
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
|
SELECT
`NAME` AS NAME,
sv_studenttest.SCORE AS SCORE,
sv_testpaper.TOTAL_SCORE AS TOTAL_SCORE,
CREATE_DATE,
sv_testpaper.AVG_SCORE AS AVG_SCORE,
sv_testpaper.HIGHT_SCORE AS MAX_SCORE
FROM
sv_testpaper
LEFT JOIN sv_studenttest ON sv_testpaper.TESTPAPER_ID = sv_studenttest.TEST_ID
WHERE 1 = 1
<if test="STUDENT_ID != null and STUDENT_ID != ''">
and sv_studenttest.STUDENT_ID = #{STUDENT_ID}
</if>
|
a0ec879e
孙向锦
修改部分bug
|
180
181
182
|
<if test="TEACHER_ID != null and TEACHER_ID != ''">
and sv_testpaper.TEACHER_ID = #{TEACHER_ID}
</if>
|
4d39642d
孙向锦
添加学生报表
|
183
184
185
186
187
188
|
<if test="START_DATE != null and START_DATE != ''"><!-- 关键词检索 -->
and (CREATE_DATE > #{START_DATE})
</if>
<if test="END_DATE != null and END_DATE != ''"><!-- 关键词检索 -->
and (CREATE_DATE < #{END_DATE})
</if>
|
b9dc59e6
孙向锦
管理员过滤条件
|
189
190
191
|
<if test="SUBJECT_ID != null and SUBJECT_ID != ''"><!-- 关键词检索 -->
and (sv_testpaper.SUBJECT_ID = #{SUBJECT_ID})
</if>
|
4d39642d
孙向锦
添加学生报表
|
192
193
194
195
196
197
|
order by CREATE_DATE
</select>
|
e9f47f90
孙向锦
优化个人成绩报表
|
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
|
<select id="reportClassListData" parameterType="pd" resultType="pd">
SELECT
sv_student.ID,
sv_student.`NAME` AS NAME,
sv_testpaper.`NAME` AS TNAME,
sv_studenttest.SCORE AS SCORE,
sv_testpaper.TOTAL_SCORE AS TOTAL_SCORE,
sv_testpaper.CREATE_DATE,
sv_testpaper.AVG_SCORE AS AVG_SCORE,
sv_testpaper.HIGHT_SCORE AS MAX_SCORE
FROM
sv_student
LEFT JOIN sv_studenttest ON sv_student.ID = sv_studenttest.STUDENT_ID
LEFT JOIN sv_testpaper ON sv_testpaper.TESTPAPER_ID = sv_studenttest.TEST_ID
WHERE 1 = 1
<if test="CLASS_ID != null and CLASS_ID != ''">
AND sv_student.CLASS_ID = #{CLASS_ID}
AND sv_testpaper.SCLASS_ID = #{CLASS_ID}
</if>
AND sv_testpaper.`NAME` IS NOT NULL
<if test="TEACHER_ID != null and TEACHER_ID != ''">
and sv_testpaper.TEACHER_ID = #{TEACHER_ID}
</if>
<if test="TEST_TYPE != null and TEST_TYPE != ''">
and sv_testpaper.TEST_TYPE = #{TEST_TYPE}
</if>
<if test="START_DATE != null and START_DATE != ''"><!-- 关键词检索 -->
and (CREATE_DATE > #{START_DATE})
</if>
<if test="END_DATE != null and END_DATE != ''"><!-- 关键词检索 -->
and (CREATE_DATE < #{END_DATE})
</if>
<if test="SUBJECT_ID != null and SUBJECT_ID != ''"><!-- 关键词检索 -->
and (sv_testpaper.SUBJECT_ID = #{SUBJECT_ID})
</if>
ORDER BY
sv_student.NUMBER,
sv_testpaper.CREATE_DATE
</select>
|
4d39642d
孙向锦
添加学生报表
|
239
|
<select id="reportListDataCalc" parameterType="pd" resultType="pd">
|
9338b563
孙向锦
添加报表
|
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
|
SELECT
`NAME` AS NAME,
sv_studenttest.SCORE AS SCORE,
sv_testpaper.TOTAL_SCORE AS TOTAL_SCORE,
CREATE_DATE,
sv_studenttest.STUDENT_ID AS STUDENT_ID
FROM
sv_testpaper
LEFT JOIN sv_studenttest ON sv_testpaper.TESTPAPER_ID = sv_studenttest.TEST_ID
WHERE 1 = 1
<if test="STUDENT_ID != null and STUDENT_ID != ''">
and sv_studenttest.STUDENT_ID = #{STUDENT_ID}
</if>
<if test="START_DATE != null and START_DATE != ''"><!-- 关键词检索 -->
and (CREATE_DATE > #{START_DATE})
</if>
<if test="END_DATE != null and END_DATE != ''"><!-- 关键词检索 -->
and (CREATE_DATE < #{END_DATE})
</if>
order by CREATE_DATE
|
91a745c9
孙向锦
完善后台功能
|
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
|
</select>
<!-- 批量删除 -->
<delete id="deleteAll" parameterType="String">
delete from
<include refid="tableName"></include>
where
STUDENTTEST_ID in
<foreach item="item" index="index" collection="array" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<!-- fh313596790qq(青苔) -->
</mapper>
|