Blame view

resources/mybatis1/sunvote/SClassMapper.xml 3.13 KB
7db3ebeb   孙向锦   添加一些模块
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  <?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="SClassMapper">
  	
  	<!--表名 -->
  	<sql id="tableName">
  		SV_SCLASS
  	</sql>
  	
  	<!-- 字段 -->
  	<sql id="Field">
  		SCHOOL_ID,	
  		GRADE_ID,	
  		CLASS_TYPE,	
  		CLASS_NAME,	
  		CLASS_CODE,	
  		BASESTATION_ID,	
48d44272   孙向锦   添加一些action
18
  		HEADMASTER_ID,	
7db3ebeb   孙向锦   添加一些模块
19
20
21
22
23
24
25
26
27
28
29
  		ID
  	</sql>
  	
  	<!-- 字段值 -->
  	<sql id="FieldValue">
  		#{SCHOOL_ID},	
  		#{GRADE_ID},	
  		#{CLASS_TYPE},	
  		#{CLASS_NAME},	
  		#{CLASS_CODE},	
  		#{BASESTATION_ID},	
48d44272   孙向锦   添加一些action
30
  		#{HEADMASTER_ID},	
7db3ebeb   孙向锦   添加一些模块
31
32
33
34
35
36
37
38
39
40
41
42
43
  		#{ID}
  	</sql>
  	
  	<!-- 新增-->
  	<insert id="save" parameterType="pd">
  		insert into 
  	<include refid="tableName"></include>
  		(
  			SCHOOL_ID,	
  			GRADE_ID,	
  			CLASS_TYPE,	
  			CLASS_NAME,	
  			CLASS_CODE,	
b5cf92b7   孙向锦   批量上传学生名单
44
  			ID,	
48d44272   孙向锦   添加一些action
45
  			HEADMASTER_ID,	
7db3ebeb   孙向锦   添加一些模块
46
47
48
49
50
51
52
  			BASESTATION_ID
  		) values (
  		#{SCHOOL_ID},	
  		#{GRADE_ID},	
  		#{CLASS_TYPE},	
  		#{CLASS_NAME},	
  		#{CLASS_CODE},	
b5cf92b7   孙向锦   批量上传学生名单
53
  		#{ID},	
48d44272   孙向锦   添加一些action
54
  		#{HEADMASTER_ID},	
7db3ebeb   孙向锦   添加一些模块
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
  		#{BASESTATION_ID}
  		)
  	</insert>
  	
  	<!-- 删除-->
  	<delete id="delete" parameterType="pd">
  		delete from
  		<include refid="tableName"></include>
  		where 
  			ID = #{ID}
  	</delete>
  	
  	<!-- 修改 -->
  	<update id="edit" parameterType="pd">
  		update
  		<include refid="tableName"></include>
  		set 
  			SCHOOL_ID = #{SCHOOL_ID},
  			GRADE_ID = #{GRADE_ID},
  			CLASS_TYPE = #{CLASS_TYPE},
  			CLASS_NAME = #{CLASS_NAME},
  			CLASS_CODE = #{CLASS_CODE},
  			BASESTATION_ID = #{BASESTATION_ID},
48d44272   孙向锦   添加一些action
78
  			HEADMASTER_ID = #{HEADMASTER_ID},
7db3ebeb   孙向锦   添加一些模块
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
  		ID = #{ID}
  		where 
  		ID = #{ID}
  	</update>
  	
  	<!-- 通过ID获取数据 -->
  	<select id="findById" parameterType="pd" resultType="pd">
  		select 
  		<include refid="Field"></include>
  		from 
  		<include refid="tableName"></include>
  		where 
  			ID = #{ID}
  	</select>
  	
  	<!-- 列表 -->
  	<select id="datalistPage" parameterType="page" resultType="pd">
  		select
  		<include refid="Field"></include>
  		from 
  		<include refid="tableName"></include>
b5cf92b7   孙向锦   批量上传学生名单
100
101
102
103
104
105
106
107
108
109
  		where 1 = 1 
  		<if test="pd.SCHOOL_ID != null and pd.SCHOOL_ID != ''">
  				and ( SCHOOL_ID = #{pd.SCHOOL_ID} )
  			</if>
  			<if test="pd.GRADE_ID != null and pd.GRADE_ID != ''">
  				and ( GRADE_ID = #{pd.GRADE_ID} )
  			</if>
  			<if test="pd.CLASS_TYPE != null and pd.CLASS_TYPE != ''">
  				and ( CLASS_TYPE = #{pd.CLASS_TYPE} )
  			</if>
7db3ebeb   孙向锦   添加一些模块
110
111
112
113
114
115
116
117
  	</select>
  	
  	<!-- 列表(全部) -->
  	<select id="listAll" parameterType="pd" resultType="pd">
  		select
  		<include refid="Field"></include>
  		from 
  		<include refid="tableName"></include>
4fd2e08c   孙向锦   修复接口中的bug
118
119
120
121
122
123
124
125
126
127
  		where 1=1
  		<if test="SCHOOL_ID != null and SCHOOL_ID != ''">
  			and ( SCHOOL_ID = #{SCHOOL_ID} )
  		</if>
  		<if test="GRADE_ID != null and GRADE_ID != ''">
  			and ( GRADE_ID = #{GRADE_ID} )
  		</if>
  		<if test="CLASS_TYPE != null and CLASS_TYPE != ''">
  			and ( CLASS_TYPE = #{CLASS_TYPE} )
  		</if>
48d44272   孙向锦   添加一些action
128
129
130
  		<if test="HEADMASTER_ID != null and HEADMASTER_ID != ''">
  			and ( HEADMASTER_ID = #{HEADMASTER_ID} )
  		</if>
4fd2e08c   孙向锦   修复接口中的bug
131
  		
7db3ebeb   孙向锦   添加一些模块
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
  	</select>
  	
  	<!-- 批量删除 -->
  	<delete id="deleteAll" parameterType="String">
  		delete from
  		<include refid="tableName"></include>
  		where 
  			ID in
  		<foreach item="item" index="index" collection="array" open="(" separator="," close=")">
                   #{item}
  		</foreach>
  	</delete>
  	
  	<!-- fh313596790qq(青苔) -->
  </mapper>