Blame view

resources/mybatis1/sunvote/SchoolMapper.xml 2.49 KB
92455d76   孙向锦   添加更新到服务器
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="SchoolMapper">
  	
  	<!--表名 -->
  	<sql id="tableName">
  		SV_SCHOOL
  	</sql>
  	
  	<!-- 字段 -->
  	<sql id="Field">
  		NAME,	
  		ADDRESS,	
  		PRESIDENT,	
  		PHONE,	
  		REMARK,	
b980d59d   孙向锦   修改模板
17
  		ID
92455d76   孙向锦   添加更新到服务器
18
19
20
21
22
23
24
25
26
  	</sql>
  	
  	<!-- 字段值 -->
  	<sql id="FieldValue">
  		#{NAME},	
  		#{ADDRESS},	
  		#{PRESIDENT},	
  		#{PHONE},	
  		#{REMARK},	
b980d59d   孙向锦   修改模板
27
  		#{ID}
92455d76   孙向锦   添加更新到服务器
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
  	</sql>
  	
  	<!-- 新增-->
  	<insert id="save" parameterType="pd">
  		insert into 
  	<include refid="tableName"></include>
  		(
  		NAME,	
  		ADDRESS,	
  		PRESIDENT,	
  		PHONE,	
  		REMARK
  		) values (
  		#{NAME},	
  		#{ADDRESS},	
  		#{PRESIDENT},	
  		#{PHONE},	
  		#{REMARK}
  		)
  	</insert>
  	
  	<!-- 删除-->
  	<delete id="delete" parameterType="pd">
  		delete from
  		<include refid="tableName"></include>
  		where 
b980d59d   孙向锦   修改模板
54
  			ID = #{ID}
92455d76   孙向锦   添加更新到服务器
55
56
57
58
59
60
61
62
63
64
65
66
  	</delete>
  	
  	<!-- 修改 -->
  	<update id="edit" parameterType="pd">
  		update
  		<include refid="tableName"></include>
  		set 
  			NAME = #{NAME},
  			ADDRESS = #{ADDRESS},
  			PRESIDENT = #{PRESIDENT},
  			PHONE = #{PHONE},
  			REMARK = #{REMARK},
b980d59d   孙向锦   修改模板
67
  		ID = ID
92455d76   孙向锦   添加更新到服务器
68
  		where 
b980d59d   孙向锦   修改模板
69
  		ID = #{ID}
92455d76   孙向锦   添加更新到服务器
70
71
72
73
74
75
76
77
78
  	</update>
  	
  	<!-- 通过ID获取数据 -->
  	<select id="findById" parameterType="pd" resultType="pd">
  		select 
  		<include refid="Field"></include>
  		from 
  		<include refid="tableName"></include>
  		where 
b980d59d   孙向锦   修改模板
79
  			ID = #{ID}
92455d76   孙向锦   添加更新到服务器
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
  	</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   孙向锦   修改模板
114
  			ID in
92455d76   孙向锦   添加更新到服务器
115
116
117
118
119
  		<foreach item="item" index="index" collection="array" open="(" separator="," close=")">
                   #{item}
  		</foreach>
  	</delete>
  	
b980d59d   孙向锦   修改模板
120
121
122
123
124
125
126
127
  	<!-- max(id) -->
  	<select id="maxID" parameterType="pd" resultType="pd">
  		select
  		max(ID) as ID
  		from 
  		<include refid="tableName"></include>
  	</select>
  	
92455d76   孙向锦   添加更新到服务器
128
129
  	<!-- fh313596790qq(青苔) -->
  </mapper>