Blame view

resources/mybatis1/sunvote/TeachingMaterialMapper.xml 2.37 KB
92455d76   孙向锦   添加更新到服务器
1
2
  <?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">
c617106f   孙向锦   添加即时测功能
3
  <mapper namespace="TextbookMapper">
92455d76   孙向锦   添加更新到服务器
4
5
6
  	
  	<!--表名 -->
  	<sql id="tableName">
c617106f   孙向锦   添加即时测功能
7
  		SV_TEXTBOOK
92455d76   孙向锦   添加更新到服务器
8
9
10
11
  	</sql>
  	
  	<!-- 字段 -->
  	<sql id="Field">
c617106f   孙向锦   添加即时测功能
12
13
14
15
16
17
  		ID,
  		NAME,
  		SUBJECT_ID,
  		GRADEID,
  		REMARK,
  		TEACHING_MATERIAL_ID
92455d76   孙向锦   添加更新到服务器
18
19
20
21
  	</sql>
  	
  	<!-- 字段值 -->
  	<sql id="FieldValue">
c617106f   孙向锦   添加即时测功能
22
  		#{ID},	
92455d76   孙向锦   添加更新到服务器
23
24
25
  		#{NAME},	
  		#{SUBJECT_ID},	
  		#{GRADE_ID},	
92455d76   孙向锦   添加更新到服务器
26
  		#{VERSION_NAME},	
c617106f   孙向锦   添加即时测功能
27
28
  		#{REMARK},
  		#{TEACHING_MATERIAL_ID}
92455d76   孙向锦   添加更新到服务器
29
30
31
32
33
34
35
  	</sql>
  	
  	<!-- 新增-->
  	<insert id="save" parameterType="pd">
  		insert into 
  	<include refid="tableName"></include>
  		(
ce70231e   孙向锦   增加接口
36
37
  		<include refid="Field"></include>
  	
92455d76   孙向锦   添加更新到服务器
38
  		) values (
ce70231e   孙向锦   增加接口
39
  		<include refid="FieldValue"></include>
92455d76   孙向锦   添加更新到服务器
40
41
42
43
44
45
46
47
  		)
  	</insert>
  	
  	<!-- 删除-->
  	<delete id="delete" parameterType="pd">
  		delete from
  		<include refid="tableName"></include>
  		where 
b980d59d   孙向锦   修改模板
48
  			ID = #{ID}
92455d76   孙向锦   添加更新到服务器
49
50
51
52
53
54
55
56
57
58
  	</delete>
  	
  	<!-- 修改 -->
  	<update id="edit" parameterType="pd">
  		update
  		<include refid="tableName"></include>
  		set 
  			NAME = #{NAME},
  			SUBJECT_ID = #{SUBJECT_ID},
  			GRADE_ID = #{GRADE_ID},
c617106f   孙向锦   添加即时测功能
59
60
61
  			REMARK = #{REMARK},
  			TEACHING_MATERIAL_ID = #{TEACHING_MATERIAL_ID},
  			ID = #{ID}
92455d76   孙向锦   添加更新到服务器
62
  		where 
b980d59d   孙向锦   修改模板
63
  		ID = #{ID}
92455d76   孙向锦   添加更新到服务器
64
65
66
67
68
69
70
71
72
  	</update>
  	
  	<!-- 通过ID获取数据 -->
  	<select id="findById" parameterType="pd" resultType="pd">
  		select 
  		<include refid="Field"></include>
  		from 
  		<include refid="tableName"></include>
  		where 
b980d59d   孙向锦   修改模板
73
  			ID = #{ID}
92455d76   孙向锦   添加更新到服务器
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
  	</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 
b980d59d   孙向锦   修改模板
108
  			ID in
92455d76   孙向锦   添加更新到服务器
109
110
111
112
113
114
115
  		<foreach item="item" index="index" collection="array" open="(" separator="," close=")">
                   #{item}
  		</foreach>
  	</delete>
  	
  	<!-- fh313596790qq(青苔) -->
  </mapper>