Blame view

resources/mybatis1/sunvote/HomeworkReportMapper.xml 3.89 KB
a479f295   孙向锦   添加了报表逻辑
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  <?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="HomeworkReportMapper">
  	
  	<!--表名 -->
  	<sql id="tableName">
  		SV_HOMEWORKREPORT
  	</sql>
  	
  	<!-- 字段 -->
  	<sql id="Field">
  		HOMEWORK_REPORT_ID,	
  		RANK,	
  		STUDENT_NAME,	
  		STUDNET_NO,	
  		KEYBOARD,	
  		RIGHT_PERSENT,	
  		GET_SCORE,	
  		ANSWER,	
1cbf6605   孙向锦   作业报表更新
20
  		COMPLETE_COUNT,	
a479f295   孙向锦   添加了报表逻辑
21
22
23
24
25
26
27
28
29
30
31
32
33
  		HOMEWORK_ID
  	</sql>
  	
  	<!-- 字段值 -->
  	<sql id="FieldValue">
  		#{HOMEWORK_REPORT_ID},	
  		#{RANK},	
  		#{STUDENT_NAME},	
  		#{STUDNET_NO},	
  		#{KEYBOARD},	
  		#{RIGHT_PERSENT},	
  		#{GET_SCORE},	
  		#{ANSWER},	
1cbf6605   孙向锦   作业报表更新
34
  		#{COMPLETE_COUNT},	
a479f295   孙向锦   添加了报表逻辑
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
  		#{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_REPORT_ID = #{HOMEWORK_REPORT_ID}
  	</delete>
  	
  	<!-- 修改 -->
  	<update id="edit" parameterType="pd">
  		update
  		<include refid="tableName"></include>
  		set 
  		RANK = #{RANK},
  		STUDENT_NAME = #{STUDENT_NAME},
  		STUDNET_NO = #{STUDNET_NO},
  		KEYBOARD = #{KEYBOARD},
  		RIGHT_PERSENT = #{RIGHT_PERSENT},
  		GET_SCORE = #{GET_SCORE},
  		ANSWER = #{ANSWER},
1cbf6605   孙向锦   作业报表更新
69
  		COMPLETE_COUNT = #{COMPLETE_COUNT},
a479f295   孙向锦   添加了报表逻辑
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
  		HOMEWORK_ID = #{HOMEWORK_ID}
  		where 
  		HOMEWORK_REPORT_ID = #{HOMEWORK_REPORT_ID}
  	</update>
  	<!-- 修改 -->
  	<update id="update" parameterType="pd">
  		update
  		<include refid="tableName"></include>
  		set 
  		RANK = #{RANK},
  		STUDENT_NAME = #{STUDENT_NAME},
  		STUDNET_NO = #{STUDNET_NO},
  		KEYBOARD = #{KEYBOARD},
  		RIGHT_PERSENT = #{RIGHT_PERSENT},
  		GET_SCORE = #{GET_SCORE},
  		ANSWER = #{ANSWER},
  		HOMEWORK_ID = #{HOMEWORK_ID}
  		where 
  		HOMEWORK_ID = #{HOMEWORK_ID}
  		and
  		STUDNET_NO = #{STUDNET_NO}
  	</update>
  	
  	<!-- 通过ID获取数据 -->
  	<select id="findById" parameterType="pd" resultType="pd">
  		select 
  		<include refid="Field"></include>
  		from 
  		<include refid="tableName"></include>
  		where 
  			HOMEWORK_REPORT_ID = #{HOMEWORK_REPORT_ID}
  	</select>
  	
  	<select id="findByHomeworkID" parameterType="pd" resultType="pd">
  		select 
  		<include refid="Field"></include>
  		from 
  		<include refid="tableName"></include>
  		where 
  			HOMEWORK_ID = #{HOMEWORK_ID}
  	</select>
  	
  	<!-- 列表 -->
  	<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>
  	
  
  	
  	<!-- 批量删除 -->
  	<delete id="deleteAll" parameterType="String">
  		delete from
  		<include refid="tableName"></include>
  		where 
  			HOMEWORK_REPORT_ID in
  		<foreach item="item" index="index" collection="array" open="(" separator="," close=")">
                   #{item}
  		</foreach>
  	</delete>
  	
  	<!-- fh313596790qq(青苔) -->
  	
  	<!-- 新增-->
  	<insert id="batchSave" parameterType="java.util.List">
  		insert into 
  	<include refid="tableName"></include>
  		(
  	<include refid="Field"></include>
  		) values 
  
  	 <foreach collection="list" index="index" item="item" separator=",">
        (
        	#{item.HOMEWORK_REPORT_ID},	
  		#{item.RANK},	
  		#{item.STUDENT_NAME},	
  		#{item.STUDNET_NO},	
  		#{item.KEYBOARD},	
  		#{item.RIGHT_PERSENT},	
  		#{item.GET_SCORE},	
  		#{item.ANSWER},	
  		#{item.HOMEWORK_ID}
1cbf6605   孙向锦   作业报表更新
173
  		#{item.COMPLETE_COUNT}
a479f295   孙向锦   添加了报表逻辑
174
175
176
177
178
         )
       </foreach>
       </insert>
       
  </mapper>