Blame view

resources/mybatis1/sunvote/PaperMapper.xml 3.95 KB
bed6e1fc   孙向锦   添加其他功能
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  <?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="PaperMapper">
  	
  	<!--表名 -->
  	<sql id="tableName">
  		SV_PAPER
  	</sql>
  	
  	<!-- 字段 -->
  	<sql id="Field">
  		TITLE,	
  		USER_ID,	
  		PAPER_TYPE,	
  		SUBJECT_ID,	
  		GRADE_ID,	
  		SCHOOL_ID,	
  		CREATE_DATE,	
  		MODIFY_DATE,	
  		EXAM_TIME,	
  		PAPER_STATE,	
  		REMARK,	
338594c8   孙向锦   添加教师端页面
23
  		SCORE,	
4fd2e08c   孙向锦   修复接口中的bug
24
  		QUESTION_NUM,	
bed6e1fc   孙向锦   添加其他功能
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
  		PAPER_ID
  	</sql>
  	
  	<!-- 字段值 -->
  	<sql id="FieldValue">
  		#{TITLE},	
  		#{USER_ID},	
  		#{PAPER_TYPE},	
  		#{SUBJECT_ID},	
  		#{GRADE_ID},	
  		#{SCHOOL_ID},	
  		#{CREATE_DATE},	
  		#{MODIFY_DATE},	
  		#{EXAM_TIME},	
  		#{PAPER_STATE},	
  		#{REMARK},	
338594c8   孙向锦   添加教师端页面
41
  		#{SCORE},	
4fd2e08c   孙向锦   修复接口中的bug
42
  		#{QUESTION_NUM},	
bed6e1fc   孙向锦   添加其他功能
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
  		#{PAPER_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 
  			PAPER_ID = #{PAPER_ID}
  	</delete>
  	
  	<!-- 修改 -->
  	<update id="edit" parameterType="pd">
  		update
  		<include refid="tableName"></include>
  		set 
  			TITLE = #{TITLE},
  			USER_ID = #{USER_ID},
  			PAPER_TYPE = #{PAPER_TYPE},
  			SUBJECT_ID = #{SUBJECT_ID},
  			GRADE_ID = #{GRADE_ID},
  			SCHOOL_ID = #{SCHOOL_ID},
  			CREATE_DATE = #{CREATE_DATE},
  			MODIFY_DATE = #{MODIFY_DATE},
  			EXAM_TIME = #{EXAM_TIME},
  			PAPER_STATE = #{PAPER_STATE},
  			REMARK = #{REMARK},
338594c8   孙向锦   添加教师端页面
81
  			SCORE = #{SCORE},
4fd2e08c   孙向锦   修复接口中的bug
82
  			QUESTION_NUM = #{QUESTION_NUM},
bed6e1fc   孙向锦   添加其他功能
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
  		PAPER_ID = PAPER_ID
  		where 
  		PAPER_ID = #{PAPER_ID}
  	</update>
  	
  	<!-- 通过ID获取数据 -->
  	<select id="findById" parameterType="pd" resultType="pd">
  		select 
  		<include refid="Field"></include>
  		from 
  		<include refid="tableName"></include>
  		where 
  			PAPER_ID = #{PAPER_ID}
  	</select>
  	
  	<!-- 列表 -->
  	<select id="datalistPage" parameterType="page" resultType="pd">
  		select
  		<include refid="Field"></include>
  		from 
  		<include refid="tableName"></include>
  		where 1=1
338594c8   孙向锦   添加教师端页面
105
  		<if test="pd.LASTSTART != null and pd.LASTSTARt != ''"><!-- 关键词检索 -->
bed6e1fc   孙向锦   添加其他功能
106
107
  			and
  				(
338594c8   孙向锦   添加教师端页面
108
  				CREATE_DATE &gt; #{pd.LASTSTART}
bed6e1fc   孙向锦   添加其他功能
109
110
111
112
113
114
115
  				<!--	根据需求自己加检索条件
  					字段1 LIKE CONCAT(CONCAT('%', #{pd.keywords}),'%')
  					 or 
  					字段2 LIKE CONCAT(CONCAT('%', #{pd.keywords}),'%') 
  				-->
  				)
  		</if>
338594c8   孙向锦   添加教师端页面
116
117
118
119
120
121
122
123
124
125
126
127
  		<if test="pd.LASTEND != null and pd.LASTEND != ''"><!-- 关键词检索 -->
  			and
  				(
  				CREATE_DATE &lt; CONCAT(#{pd.LASTEND},'A')
  				<!--	根据需求自己加检索条件
  					字段1 LIKE CONCAT(CONCAT('%', #{pd.keywords}),'%')
  					 or 
  					字段2 LIKE CONCAT(CONCAT('%', #{pd.keywords}),'%') 
  				-->
  				)
  		</if>
  		
a51b67cf   孙向锦   交互第一个版本
128
129
130
131
  		<if test="pd.USER_ID != null and pd.USER_ID != ''"><!-- 关键词检索 -->
  			and USER_ID = #{pd.USER_ID}
  		</if>
  		
338594c8   孙向锦   添加教师端页面
132
  		order by CREATE_DATE DESC
bed6e1fc   孙向锦   添加其他功能
133
134
135
136
137
138
139
140
  	</select>
  	
  	<!-- 列表(全部) -->
  	<select id="listAll" parameterType="pd" resultType="pd">
  		select
  		<include refid="Field"></include>
  		from 
  		<include refid="tableName"></include>
338594c8   孙向锦   添加教师端页面
141
142
  		
  		order by CREATE_DATE DESC
bed6e1fc   孙向锦   添加其他功能
143
144
145
  	</select>
  	
  	<!-- 指定类型列表(全部) -->
338594c8   孙向锦   添加教师端页面
146
  	<select id="listAllByTypelistPage" parameterType="page" resultType="pd">
bed6e1fc   孙向锦   添加其他功能
147
148
149
150
151
152
153
154
155
156
157
158
  		select
  		<include refid="Field"></include>
  		from 
  		<include refid="tableName"></include>
  		where 1 = 1
  		<if test="pd.PAPER_TYPE != null and pd.PAPER_TYPE != ''">
  			and PAPER_TYPE = #{pd.PAPER_TYPE}
  		</if>
  		
  		<if test="pd.USER_ID != null and pd.USER_ID != ''">
  			and USER_ID = #{pd.USER_ID}
  		</if>
f8d83f1f   孙向锦   添加学校界面
159
160
161
  		<if test="pd.SUBJECT_ID != null and pd.SUBJECT_ID != ''">
  			and SUBJECT_ID = #{pd.SUBJECT_ID}
  		</if>
bed6e1fc   孙向锦   添加其他功能
162
  		
338594c8   孙向锦   添加教师端页面
163
  		order by CREATE_DATE DESC
bed6e1fc   孙向锦   添加其他功能
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
  	</select>
  	
  	<!-- 批量删除 -->
  	<delete id="deleteAll" parameterType="String">
  		delete from
  		<include refid="tableName"></include>
  		where 
  			PAPER_ID in
  		<foreach item="item" index="index" collection="array" open="(" separator="," close=")">
                   #{item}
  		</foreach>
  	</delete>
  	
  	<!-- fh313596790qq(青苔) -->
  </mapper>