Attribute.xml
14.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
<?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="com.dili.titan.dao.AttributeDao">
<resultMap type="Attribute" id="attrResultMap">
<id property="id" column="id" />
<result property="name" column="name" />
<result property="alias" column="alias" />
<result property="dealType" column="deal_type" />
<result property="inputtype" column="inputtype" />
<result property="type" column="type" />
<result property="required" column="required" />
<result property="status" column="status" />
<result property="ctime" column="ctime" />
<result property="utime" column="utime" />
<!--<collection property="attrScope" ofType="attributeScope">-->
<!--<id property="id" column="_id" />-->
<!--<result property="attrId" column="attr_id" />-->
<!--<result property="scopeId" column="scope_id" />-->
<!--</collection>-->
<collection property="attrValue" ofType="attributeValue">
<id property="id" column="v_id" />
<result property="attrId" column="attr_id" />
<result property="value" column="value" />
<result property="order" column="order" />
<result property="show" column="show" />
<result property="status" column="status" />
</collection>
</resultMap>
<resultMap type="Attribute" id="attrResultMapCollection">
<id property="id" column="id" />
<result property="name" column="name" />
<result property="alias" column="alias" />
<result property="dealType" column="deal_type" />
<result property="inputtype" column="inputtype" />
<result property="type" column="type" />
<result property="required" column="required" />
<result property="status" column="status" />
<result property="ctime" column="ctime" />
<result property="utime" column="utime" />
<!--<collection property="attrScope" ofType="attributeScope" javaType="ArrayList" column="{attrId=id}" select="com.dili.titan.dao.AttributeScopeDao.selectScopeByattrId">-->
<!--<id property="id" column="_id" />-->
<!--<result property="attrId" column="attr_id" />-->
<!--<result property="scopeId" column="scope_id" />-->
<!--</collection>-->
<collection property="attrValue" ofType="attributeValue" javaType="ArrayList" column="{attrId=id}" select="com.dili.titan.dao.AttributeValueDao.findByAttrId">
<id property="id" column="v_id" />
<result property="attrId" column="attr_id" />
<result property="value" column="value" />
<result property="order" column="order" />
<result property="show" column="show" />
<result property="status" column="status" />
</collection>
</resultMap>
<!-- attribute 所有查询列 -->
<sql id="QUERY_COLUMN_LIST">
<![CDATA[id,name,alias,deal_type AS dealType,inputtype,type,required,status,ctime,utime]]>
</sql>
<!-- attribute 查询列来源表 -->
<sql id="QUERY_FROM_TABLE"><![CDATA[FROM attribute]]></sql>
<!-- 全部条件(更多功能可以通过queryData扩展实现) -->
<sql id="QUERY_WHERE_CLAUSE">
<where>
<if test="id != null and id != ''"><![CDATA[AND id = #{id}]]></if>
<if test="name != null and name != ''"><![CDATA[AND name = #{name}]]></if>
<if test="alias != null and alias != ''"><![CDATA[AND alias = #{alias}]]></if>
<if test="dealType != null and dealType != '' and dealType != 3"><![CDATA[AND (deal_type = #{dealType} or deal_type =3)]]></if>
<if test="inputtype != null and inputtype != ''"><![CDATA[AND inputtype = #{inputtype}]]></if>
<if test="type != null and type != ''"><![CDATA[AND type = #{type}]]></if>
<if test="required != null and required != ''"><![CDATA[AND required = #{required}]]></if>
<if test="status != null and status != ''"><![CDATA[AND status = #{status}]]></if>
<if test="ctime != null and ctime != ''"><![CDATA[AND ctime = #{ctime}]]></if>
<if test="utime != null and utime != ''"><![CDATA[AND utime = #{utime}]]></if>
</where>
</sql>
<!-- 智能排序与分页 -->
<sql id="QUERY_ORDER_LIMIT_CONDTION">
<if test="orderField != null and orderField != '' and orderFieldType != null and orderFieldType != ''"><![CDATA[ORDER BY ${orderField} ${orderFieldType}]]></if>
<if test="startIndex != null and startIndex >= 0 and pageSize != null and pageSize > 0"><![CDATA[LIMIT #{startIndex},#{pageSize}]]></if>
</sql>
<!-- 更新列字段,只要不为NULL则更新,除开主键列 -->
<sql id="UPDATE_COLUMN_SET">
<set>
<if test="name != null"><![CDATA[name = #{name},]]></if>
<if test="alias != null"><![CDATA[alias = #{alias},]]></if>
<if test="dealType != null"><![CDATA[deal_type = #{dealType},]]></if>
<if test="inputtype != null"><![CDATA[inputtype = #{inputtype},]]></if>
<if test="type != null"><![CDATA[type = #{type},]]></if>
<if test="required != null"><![CDATA[required = #{required},]]></if>
<if test="status != null"><![CDATA[status = #{status},]]></if>
<if test="ctime != null"><![CDATA[ctime = #{ctime},]]></if>
<if test="utime != null"><![CDATA[utime = now(),]]></if>
</set>
</sql>
<!-- 插入attribute记录 -->
<insert id="insertEntry" parameterType="attribute">
<![CDATA[
INSERT INTO attribute (id,name,alias,deal_type,inputtype,type,required,status,ctime,utime)
VALUES (#{id},#{name},#{alias},#{dealType},#{inputtype},#{type},#{required},#{status},now(),#{utime})
]]>
</insert>
<!-- 返回插入的编号,在事务开启状态下有效 -->
<select id="lastSequence" resultType="int"><![CDATA[SELECT LAST_INSERT_ID() AS id]]></select>
<!-- 删除记录,主键IN(array) -->
<delete id="deleteByArrayKey" parameterType="java.lang.reflect.Array">
<![CDATA[DELETE FROM attribute WHERE id IN]]>
<foreach collection="array" item="id" open="(" separator="," close=")">
<![CDATA[#{id}]]>
</foreach>
</delete>
<!-- 删除,通过条件 -->
<update id="deleteByCondtion" parameterType="attribute">
<![CDATA[DELETE FROM attribute]]>
<include refid="QUERY_WHERE_CLAUSE" />
</update>
<!-- 修改记录通过主键 -->
<update id="updateByKey" parameterType="attribute">
<![CDATA[UPDATE attribute]]>
<include refid="UPDATE_COLUMN_SET" />
<![CDATA[WHERE id = #{id}]]>
</update>
<!-- 查询,通过主键IN(array) -->
<select id="selectEntryArray" parameterType="java.lang.reflect.Array" resultType="attribute">
<![CDATA[SELECT]]>
<include refid="QUERY_COLUMN_LIST" />
<include refid="QUERY_FROM_TABLE" />
<![CDATA[WHERE id IN]]>
<foreach collection="array" item="id" open="(" separator="," close=")">
<![CDATA[#{id}]]>
</foreach>
</select>
<!-- 查询,通过条件 -->
<select id="selectEntryList" parameterType="attribute" resultType="attribute">
<![CDATA[SELECT]]>
<include refid="QUERY_COLUMN_LIST" />
<include refid="QUERY_FROM_TABLE" />
<include refid="QUERY_WHERE_CLAUSE" />
<include refid="QUERY_ORDER_LIMIT_CONDTION" />
</select>
<!-- 总数查询,通过条件 -->
<select id="selectEntryListCount" parameterType="attribute" resultType="int">
<![CDATA[SELECT COUNT(id) AS dataCount]]>
<include refid="QUERY_FROM_TABLE" />
<include refid="QUERY_WHERE_CLAUSE" />
</select>
<!-- 其它SQL语句 -->
<!-- 查询,通过条件 -->
<select id="selectList" parameterType="attribute" resultType="attribute">
<![CDATA[SELECT]]>
<include refid="QUERY_COLUMN_LIST" />
<include refid="QUERY_FROM_TABLE" />
<![CDATA[WHERE status IN (1, 10)]]>
<include refid="QUERY_ORDER_LIMIT_CONDTION" />
</select>
<!-- 总数查询,通过条件 -->
<select id="selectListCount" parameterType="attribute" resultType="int">
<![CDATA[SELECT COUNT(id) AS dataCount]]>
<include refid="QUERY_FROM_TABLE" />
<![CDATA[WHERE status IN (1, 10)]]>
</select>
<!-- 查询,通过条件 -->
<select id="searchList" parameterType="java.util.Map" resultType="attribute">
<![CDATA[SELECT DISTINCT attr.id,attr.name,attr.alias,attr.deal_type AS dealType,attr.inputtype,attr.type,attr.required,attr.status,attr.ctime,attr.utime from attribute attr ]]>
<![CDATA[WHERE status IN (1, 10)]]>
<if test="name != null and name != '' and name != '%%'"><![CDATA[AND name like CONCAT('%',#{name},'%')]]></if>
<if test="alias != null and alias != '' and alias != '%%'"><![CDATA[AND alias like CONCAT('%',#{alias},'%')]]></if>
<if test="type != null and type != ''"><![CDATA[AND type = #{type}]]></if>
<include refid="QUERY_ORDER_LIMIT_CONDTION" />
</select>
<!-- 总数查询,通过条件 -->
<select id="searchListCount" parameterType="java.util.Map" resultType="int">
<![CDATA[SELECT COUNT(DISTINCT attr.id) AS dataCount from attribute attr ]]>
<![CDATA[WHERE status IN (1, 10)]]>
<if test="name != null and name != '' and name != '%%'"><![CDATA[AND name like CONCAT('%',#{name},'%')]]></if>
<if test="alias != null and alias != '' and alias != '%%'"><![CDATA[AND alias like CONCAT('%',#{alias},'%')]]></if>
<if test="type != null and type != ''"><![CDATA[AND type = #{type}]]></if>
<if test="dealType != null and dealType != ''"><![CDATA[AND (deal_type = #{dealType} or deal_type =3)]]></if>
</select>
<!-- 属性列表页查询,采用one-to-many的方式查询出属性的范围 -->
<select id="queyAttributePage" parameterType="attribute" resultMap="attrResultMap">
<![CDATA[SELECT a.id,a.name,a.alias,a.deal_type,a.inputtype,a.type,a.required,a.status,a.ctime,a.utime FROM attribute a ]]>
<where>
<![CDATA[a.status > 0]]>
<if test="name != null and name != ''"><![CDATA[AND a.name like CONCAT('%',#{name},'%')]]></if>
<if test="alias != null and alias != ''"><![CDATA[AND a.alias like CONCAT('%',#{alias},'%')]]></if>
<if test="type != null and type != ''"><![CDATA[AND a.type = #{type}]]></if>
<if test="dealType != null and dealType != ''"><![CDATA[AND (a.deal_type = #{dealType} or a.deal_type =3)]]></if>
<if test="required != null and required != ''"><![CDATA[AND a.required = #{required}]]></if>
<if test="status != null and status != ''"><![CDATA[AND a.status = #{status}]]></if>
</where>
<include refid="QUERY_ORDER_LIMIT_CONDTION" />
</select>
<select id="queyAttributePageCount" parameterType="attribute" resultType="int">
<![CDATA[SELECT COUNT(1) AS dataCount FROM attribute a ]]>
<where>
<![CDATA[a.status > 0]]>
<if test="name != null and name != ''"><![CDATA[AND a.name like CONCAT('%',#{name},'%')]]></if>
<if test="alias != null and alias != ''"><![CDATA[AND a.alias like CONCAT('%',#{alias},'%')]]></if>
<if test="type != null and type != ''"><![CDATA[AND a.type = #{type}]]></if>
<if test="dealType != null and dealType != ''"><![CDATA[AND (a.deal_type = #{dealType} or a.deal_type =3)]]></if>
<if test="required != null and required != ''"><![CDATA[AND a.required = #{required}]]></if>
<if test="status != null and status != ''"><![CDATA[AND a.status = #{status}]]></if>
</where>
</select>
<!-- 回收列表页查询,采用one-to-many的方式查询出属性的范围 -->
<select id="selectRestorePage" parameterType="attribute" resultMap="attrResultMap">
<![CDATA[SELECT c.id,c.name,c.alias,c.deal_type AS dealType,c.inputtype,c.type,c.required,c.status,c.ctime,c.utime,d.id AS v_id,d.attr_id,d.value,d.order,d.show,d.status FROM ]]>
<![CDATA[(SELECT a.id,a.name,a.alias,a.deal_type,a.inputtype,a.type,a.required,a.status,a.ctime,a.utime FROM attribute a ]]>
<where>
<![CDATA[a.status = -1]]>
</where>
<if test="name != null and name != '' and name != '%%'"><![CDATA[AND name like CONCAT('%',#{name},'%')]]></if>
<if test="startTime != null and startTime != ''"><![CDATA[AND utime >= #{startTime}]]></if>
<if test="endTime != null and endTime != ''"><![CDATA[AND utime <= #{endTime}]]></if>
<include refid="QUERY_ORDER_LIMIT_CONDTION" />
<![CDATA[) c LEFT JOIN `attribute_value` d ON d.`attr_id` = c.id]]>
</select>
<select id="selectRestorePageCount" parameterType="attribute" resultType="int">
<![CDATA[SELECT COUNT(1) AS dataCount FROM attribute a ]]>
<where>
<![CDATA[a.status = -1]]>
</where>
<if test="name != null and name != '' and name != '%%'"><![CDATA[AND name like CONCAT('%',#{name},'%')]]></if>
<if test="startTime != null and startTime != ''"><![CDATA[AND utime >= #{startTime}]]></if>
<if test="endTime != null and endTime != ''"><![CDATA[AND utime <= #{endTime}]]></if>
</select>
<!-- 查询,通过主键IN(list)查询已锁定或删除的值 -->
<select id="selectArrayList" parameterType="java.util.List" resultType="attribute">
<![CDATA[SELECT]]>
<include refid="QUERY_COLUMN_LIST" />
<include refid="QUERY_FROM_TABLE" />
<![CDATA[WHERE id IN]]>
<foreach collection="list" item="id" open="(" separator="," close=")">
<![CDATA[#{id}]]>
</foreach>
<![CDATA[AND status != 1]]>
</select>
<select id="selectAttr" parameterType="attribute" resultMap="attrResultMap">
<![CDATA[SELECT c.id,c.name,c.alias,c.deal_type AS dealType,c.inputtype,c.type,c.required,c.status,c.ctime,c.utime,d.id AS v_id,d.attr_id,d.value,d.order,d.show,d.status FROM ]]>
<![CDATA[(SELECT a.id,a.name,a.alias,a.deal_type,a.inputtype,a.type,a.required,a.status,a.ctime,a.utime FROM attribute a ]]>
<where>
<![CDATA[a.status = -1]]>
</where>
<if test="name != null and name != '' and name != '%%'"><![CDATA[AND name like CONCAT('%',#{name},'%')]]></if>
<if test="startTime != null and startTime != ''"><![CDATA[AND utime > #{startTime}]]></if>
<if test="endTime != null and endTime != ''"><![CDATA[AND utime < #{endTime}]]></if>
<include refid="QUERY_ORDER_LIMIT_CONDTION" />
<![CDATA[) c LEFT JOIN `attribute_value` d ON d.`attr_id` = c.id]]>
</select>
<select id="findAttrByIds" parameterType="java.lang.reflect.Array" resultMap="attrResultMapCollection">
<![CDATA[SELECT]]>
<include refid="QUERY_COLUMN_LIST" />
<include refid="QUERY_FROM_TABLE" />
<![CDATA[WHERE id IN]]>
<foreach collection="array" item="id" open="(" separator="," close=")">
<![CDATA[#{id}]]>
</foreach>
</select>
<!--用于其他类的关联查询-->
<select id="selectByAttrId" parameterType="java.util.HashMap" resultMap="attrResultMapCollection">
<![CDATA[SELECT]]>
<include refid="QUERY_COLUMN_LIST"/>
<include refid="QUERY_FROM_TABLE"/>
<![CDATA[WHERE id=#{attrId} ]]>
</select>
</mapper>