DiliServiceMapper.xml
13.3 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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
<?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.diligrp.website.dao.impl.DiliServiceDaoImpl">
<resultMap id="DiliServiceRM" type="com.diligrp.website.domain.DiliService">
<id property="id" column="id"/>
<result property="name" column="name"/>
<result property="code" column="code"/>
<result property="type" column="type"/>
<result property="category" column="category"/>
<result property="remark" column="remark"/>
<result property="status" column="status"/>
<result property="creator" column="creator"/>
<result property="putawayDate" column="putawayDate"/>
<result property="downDate" column="downDate"/>
<result property="modified" column="modified"/>
<result property="created" column="created"/>
<result property="creatorName" column="creator_name"/>
<result property="image" column="image"/>
<result property="icon" column="icon"/>
<result property="yn" column="yn"/>
</resultMap>
<select id="getById" parameterType="Long" resultMap="DiliServiceRM">
<![CDATA[
SELECT
id
,name
,code
,type
,category
,remark
,status
,creator
,putawayDate
,downDate
,modified
,created
,creator_name
,image
,yn,icon
FROM t_dili_service
WHERE id=#{pk}
]]>
</select>
<select id="findByCode" parameterType="string" resultMap="DiliServiceRM">
<![CDATA[
SELECT
id
,name
,code
,type
,category
,remark
,status
,creator
,putawayDate
,downDate
,modified
,created
,creator_name
,image
,yn,icon
FROM t_dili_service
WHERE code=#{pk}
]]>
</select>
<insert id="save" parameterType="com.diligrp.website.domain.DiliService">
<selectKey keyProperty="id" resultType="long" order="AFTER">
SELECT LAST_INSERT_ID();
</selectKey>
<![CDATA[
INSERT INTO t_dili_service(
name
,code
,type
,category
,remark
,status
,creator
,putawayDate
,downDate
,modified
,image
,created
,creator_name,icon
,yn
) VALUES(
#{name}
,#{code}
,#{type}
,#{category}
,#{remark}
,#{status}
,#{creator}
,#{putawayDate}
,#{downDate}
,#{modified}
,#{image}
,#{created}
,#{creatorName},#{icon}
,#{yn}
)
]]>
</insert>
<update id="update" parameterType="com.diligrp.website.domain.DiliService">
<![CDATA[
UPDATE t_dili_service set
name=#{name}
,type=#{type}
,category=#{category}
,remark=#{remark}
,status=#{status}
,creator=#{creator}
,creator_name=#{creatorName}
,putawayDate=#{putawayDate}
,downDate=#{downDate}
,modified=#{modified}
,image=#{image}
,created=#{created}
,yn=#{yn},icon=#{icon}
where 1=1
and id = #{id}
]]>
</update>
<select id="countByCondition" parameterType="Query" resultType="Integer">
<![CDATA[
SELECT count(1) FROM t_dili_service where 1=1
]]>
<if test="param != null">
<if test="param.id != null and param.id != ''">
and id = #{param.id}
</if>
<if test="param.name != null and param.name != ''">
and name = #{param.name}
</if>
<if test="param.code != null and param.code != ''">
and code = #{param.code}
</if>
<if test="param.type != null and param.type != ''">
and type = #{param.type}
</if>
<if test="param.category != null and param.category != ''">
and (category = #{param.category} or category = 3)
</if>
<if test="param.cate != null and param.cate != ''">
and category = #{param.cate}
</if>
<if test="param.remark != null and param.remark != ''">
and remark = #{param.remark}
</if>
<if test="param.status != null and param.status != ''">
and status = #{param.status}
</if>
<if test="param.creator != null and param.creator != ''">
and creator = #{param.creator}
</if>
<if test="param.putawayDate != null and param.putawayDate != ''">
and putawayDate = #{param.putawayDate}
</if>
<if test="param.downDate != null and param.downDate != ''">
and downDate = #{param.downDate}
</if>
<if test="param.modified != null and param.modified != ''">
and modified = #{param.modified}
</if>
<if test="param.created != null and param.created != ''">
and created = #{param.created}
</if>
<if test="param.startDate != null and param.startDate != ''
and param.endDate != null and param.endDate != ''
">
and created >= #{param.startDate}
and created <= #{param.endDate}
</if>
<if test="(param.startDate != null and param.startDate != '')
and (param.endDate == null or param.endDate == '')
">
and created >= #{param.startDate}
</if>
<if test="(param.startDate == null or param.startDate == '')
and param.endDate != null and param.endDate != ''
">
and created <= #{param.endDate}
</if>
<if test="param.downStartDate != null and param.downStartDate != ''
and param.downEndDate != null and param.downEndDate != ''
">
and created >= #{param.downStartDate}
and created <= #{param.downEndDate}
</if>
<if test="(param.downStartDate != null and param.downStartDate != '')
and (param.downEndDate == null or param.downEndDate == '')
">
and created >= #{param.downStartDate}
</if>
<if test="(param.downStartDate == null or param.downStartDate == '')
and param.downEndDate != null and param.downEndDate != ''
">
and created <= #{param.downEndDate}
</if>
<![CDATA[
and (yn is null or yn = 1)
]]>
</if>
and (yn is null or yn = 1)
</select>
<select id="listByCondition" parameterType="Query" resultMap="DiliServiceRM">
<![CDATA[
SELECT
id
,name
,code
,type
,category
,remark
,status
,creator
,creator_name
,putawayDate
,downDate
,modified
,image
,created
,yn,icon
FROM t_dili_service where 1=1
]]>
<if test="param != null">
<if test="param.id != null and param.id != ''">
and id = #{param.id}
</if>
<if test="param.name != null and param.name != ''">
and name = #{param.name}
</if>
<if test="param.code != null and param.code != ''">
and code = #{param.code}
</if>
<if test="param.type != null and param.type != ''">
and type = #{param.type}
</if>
<if test="param.category != null and param.category != ''">
and (category = #{param.category} or category = 3)
</if>
<if test="param.cate != null and param.cate != ''">
and category = #{param.cate}
</if>
<if test="param.remark != null and param.remark != ''">
and remark = #{param.remark}
</if>
<if test="param.status != null and param.status != ''">
and status = #{param.status}
</if>
<if test="param.creator != null and param.creator != ''">
and creator = #{param.creator}
</if>
<if test="param.putawayDate != null and param.putawayDate != ''">
and putawayDate = #{param.putawayDate}
</if>
<if test="param.downDate != null and param.downDate != ''">
and downDate = #{param.downDate}
</if>
<if test="param.modified != null and param.modified != ''">
and modified = #{param.modified}
</if>
<if test="param.created != null and param.created != ''">
and created = #{param.created}
</if>
<if test="param.startDate != null and param.startDate != ''
and param.endDate != null and param.endDate != ''
">
and putawayDate >= #{param.startDate}
and putawayDate <= #{param.endDate}
</if>
<if test="(param.startDate != null and param.startDate != '')
and (param.endDate == null or param.endDate == '')
">
and putawayDate >= #{param.startDate}
</if>
<if test="(param.startDate == null or param.startDate == '')
and param.endDate != null and param.endDate != ''
">
and putawayDate <= #{param.endDate}
</if>
<if test="param.downStartDate != null and param.downStartDate != ''
and param.downEndDate != null and param.downEndDate != ''
">
and downDate >= #{param.downStartDate}
and downDate <= #{param.downEndDate}
</if>
<if test="(param.downStartDate != null and param.downStartDate != '')
and (param.downEndDate == null or param.downEndDate == '')
">
and downDate >= #{param.downStartDate}
</if>
<if test="(param.downStartDate == null or param.downStartDate == '')
and param.downEndDate != null and param.downEndDate != ''
">
and downDate <= #{param.downEndDate}
</if>
<![CDATA[
and (yn is null or yn = 1)
]]>
</if>
order by id desc
<![CDATA[
limit #{startRow},#{pageSize}
]]>
</select>
<select id="listAll" parameterType="Query" resultMap="DiliServiceRM">
<![CDATA[
SELECT
id
,name
,code
,type
,category
,remark
,status
,creator
,creator_name
,putawayDate
,downDate
,modified
,created
,image
,yn,icon
FROM t_dili_service where 1=1
]]>
<if test="param != null">
<if test="param.id != null and param.id != ''">
and id = #{param.id}
</if>
<if test="param.name != null and param.name != ''">
and name = #{param.name}
</if>
<if test="param.code != null and param.code != ''">
and code = #{param.code}
</if>
<if test="param.type != null and param.type != ''">
and type = #{param.type}
</if>
<if test="param.category != null and param.category != ''">
and (category = #{param.category} or category = 3)
</if>
<if test="param.cate != null and param.cate != ''">
and category = #{param.cate}
</if>
<if test="param.remark != null and param.remark != ''">
and remark = #{param.remark}
</if>
<if test="param.status != null and param.status != ''">
and status = #{param.status}
</if>
<if test="param.creator != null and param.creator != ''">
and creator = #{param.creator}
</if>
<if test="param.putawayDate != null and param.putawayDate != ''">
and putawayDate = #{param.putawayDate}
</if>
<if test="param.downDate != null and param.downDate != ''">
and downDate = #{param.downDate}
</if>
<if test="param.modified != null and param.modified != ''">
and modified = #{param.modified}
</if>
<if test="param.created != null and param.created != ''">
and created = #{param.created}
</if>
<![CDATA[
and (yn is null or yn = 1)
]]>
</if>
order by id desc
</select>
<update id="deleteById" parameterType="Long">
<![CDATA[
update t_dili_service set
yn = 2
where 1 = 1
and id = #{id}
]]>
</update>
</mapper>