Blame view

resources/mybatis1/sunvote/KnowledgeMapper.xml 2.98 KB
bed6e1fc   孙向锦   添加其他功能
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  <?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="KnowledgeMapper">
  	
  	<!--表名 -->
  	<sql id="tableName">
  		SV_KNOWLEDGE
  	</sql>
  	
  	<!-- 字段 -->
  	<sql id="Field">
  		NAME,	
  		P_ID,	
  		RANK,	
  		CODE,	
ce70231e   孙向锦   增加接口
16
  		SUBJECT_ID,	
bed6e1fc   孙向锦   添加其他功能
17
18
19
20
21
22
23
24
25
26
  		REMARK,	
  		KNOWLEDGE_ID
  	</sql>
  	
  	<!-- 字段值 -->
  	<sql id="FieldValue">
  		#{NAME},	
  		#{P_ID},	
  		#{RANK},	
  		#{CODE},	
ce70231e   孙向锦   增加接口
27
  		#{SUBJECT_ID},	
bed6e1fc   孙向锦   添加其他功能
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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
  		#{REMARK},	
  		#{KNOWLEDGE_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 
  			KNOWLEDGE_ID = #{KNOWLEDGE_ID}
  	</delete>
  	
  	<!-- 修改 -->
  	<update id="edit" parameterType="pd">
  		update
  		<include refid="tableName"></include>
  		set 
  			NAME = #{NAME},
  			P_ID = #{P_ID},
  			RANK = #{RANK},
  			CODE = #{CODE},
  			REMARK = #{REMARK},
  		KNOWLEDGE_ID = KNOWLEDGE_ID
  		where 
  		KNOWLEDGE_ID = #{KNOWLEDGE_ID}
  	</update>
  	
  	<!-- 通过ID获取数据 -->
  	<select id="findById" parameterType="pd" resultType="pd">
  		select 
  		<include refid="Field"></include>
  		from 
  		<include refid="tableName"></include>
  		where 
  			KNOWLEDGE_ID = #{KNOWLEDGE_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>
  	
ce70231e   孙向锦   增加接口
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
  	<!-- 列表(全部) -->
  	<select id="listAllknowledge" parameterType="pd" resultType="pd">
  		select
  		<include refid="Field"></include>
  		from 
  		<include refid="tableName"></include>
  		
  		where 1 = 1 
  		
  		<if test="P_ID != null and P_ID != ''">
  			and P_ID = #{P_ID}
  		</if>
  		
  		<if test="P_ID == null or P_ID == ''">
  			and P_ID is NULL
  		</if>
  		
  		<if test="SUBJECT_ID != null and SUBJECT_ID != ''">
  			and SUBJECT_ID = #{SUBJECT_ID}
  		</if>
  		<if test="KNOWLEDGE_FROM != null and KNOWLEDGE_FROM != ''">
  			and KNOWLEDGE_FROM = #{KNOWLEDGE_FROM}
  		</if>
  		
c617106f   孙向锦   添加即时测功能
127
128
  		
  		order by RANK
ce70231e   孙向锦   增加接口
129
130
131
  	</select>
  	
  	
bed6e1fc   孙向锦   添加其他功能
132
133
134
135
136
137
138
139
140
141
142
143
144
  	<!-- 批量删除 -->
  	<delete id="deleteAll" parameterType="String">
  		delete from
  		<include refid="tableName"></include>
  		where 
  			KNOWLEDGE_ID in
  		<foreach item="item" index="index" collection="array" open="(" separator="," close=")">
                   #{item}
  		</foreach>
  	</delete>
  	
  	<!-- fh313596790qq(青苔) -->
  </mapper>