fanxw 1 год назад
Родитель
Сommit
1658419028

+ 527 - 0
src/main/java/com/chinaitop/depot/business/mapper/BusinessContractReceiveMapper.xml

@@ -0,0 +1,527 @@
1
+<?xml version="1.0" encoding="UTF-8" ?>
2
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
3
+<mapper namespace="com.chinaitop.depot.business.mapper.BusinessContractReceiveMapper" >
4
+  <resultMap id="BaseResultMap" type="com.chinaitop.depot.business.model.BusinessContractReceive" >
5
+    <id column="id" property="id" jdbcType="INTEGER" />
6
+    <result column="org_id" property="orgId" jdbcType="INTEGER" />
7
+    <result column="spt_htid" property="sptHtid" jdbcType="VARCHAR" />
8
+    <result column="htbh" property="htbh" jdbcType="VARCHAR" />
9
+    <result column="htlx" property="htlx" jdbcType="VARCHAR" />
10
+    <result column="htzsl" property="htzsl" jdbcType="DECIMAL" />
11
+    <result column="htdj" property="htdj" jdbcType="DECIMAL" />
12
+    <result column="htzj" property="htzj" jdbcType="DECIMAL" />
13
+    <result column="yjsje" property="yjsje" jdbcType="DECIMAL" />
14
+    <result column="house_id" property="houseId" jdbcType="INTEGER" />
15
+    <result column="warehouse_id" property="warehouseId" jdbcType="INTEGER" />
16
+    <result column="lypz" property="lypz" jdbcType="INTEGER" />
17
+    <result column="mxpz" property="mxpz" jdbcType="INTEGER" />
18
+    <result column="lydj" property="lydj" jdbcType="INTEGER" />
19
+    <result column="lyxz" property="lyxz" jdbcType="INTEGER" />
20
+    <result column="scnf" property="scnf" jdbcType="INTEGER" />
21
+    <result column="shnd" property="shnd" jdbcType="INTEGER" />
22
+    <result column="lycd" property="lycd" jdbcType="INTEGER" />
23
+    <result column="rksj" property="rksj" jdbcType="TIMESTAMP" />
24
+    <result column="khid" property="khid" jdbcType="INTEGER" />
25
+    <result column="khmc" property="khmc" jdbcType="VARCHAR" />
26
+    <result column="tyxydm" property="tyxydm" jdbcType="VARCHAR" />
27
+    <result column="input_time" property="inputTime" jdbcType="TIMESTAMP" />
28
+    <result column="update_time" property="updateTime" jdbcType="TIMESTAMP" />
29
+    <result column="data_type" property="dataType" jdbcType="VARCHAR" />
30
+  </resultMap>
31
+  <sql id="Example_Where_Clause" >
32
+    <where >
33
+      <foreach collection="oredCriteria" item="criteria" separator="or" >
34
+        <if test="criteria.valid" >
35
+          <trim prefix="(" suffix=")" prefixOverrides="and" >
36
+            <foreach collection="criteria.criteria" item="criterion" >
37
+              <choose >
38
+                <when test="criterion.noValue" >
39
+                  and ${criterion.condition}
40
+                </when>
41
+                <when test="criterion.singleValue" >
42
+                  and ${criterion.condition} #{criterion.value}
43
+                </when>
44
+                <when test="criterion.betweenValue" >
45
+                  and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
46
+                </when>
47
+                <when test="criterion.listValue" >
48
+                  and ${criterion.condition}
49
+                  <foreach collection="criterion.value" item="listItem" open="(" close=")" separator="," >
50
+                    #{listItem}
51
+                  </foreach>
52
+                </when>
53
+              </choose>
54
+            </foreach>
55
+          </trim>
56
+        </if>
57
+      </foreach>
58
+    </where>
59
+  </sql>
60
+  <sql id="Update_By_Example_Where_Clause" >
61
+    <where >
62
+      <foreach collection="example.oredCriteria" item="criteria" separator="or" >
63
+        <if test="criteria.valid" >
64
+          <trim prefix="(" suffix=")" prefixOverrides="and" >
65
+            <foreach collection="criteria.criteria" item="criterion" >
66
+              <choose >
67
+                <when test="criterion.noValue" >
68
+                  and ${criterion.condition}
69
+                </when>
70
+                <when test="criterion.singleValue" >
71
+                  and ${criterion.condition} #{criterion.value}
72
+                </when>
73
+                <when test="criterion.betweenValue" >
74
+                  and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
75
+                </when>
76
+                <when test="criterion.listValue" >
77
+                  and ${criterion.condition}
78
+                  <foreach collection="criterion.value" item="listItem" open="(" close=")" separator="," >
79
+                    #{listItem}
80
+                  </foreach>
81
+                </when>
82
+              </choose>
83
+            </foreach>
84
+          </trim>
85
+        </if>
86
+      </foreach>
87
+    </where>
88
+  </sql>
89
+  <sql id="Base_Column_List" >
90
+    id, org_id, spt_htid, htbh, htlx, htzsl, htdj, htzj, yjsje, house_id, warehouse_id, 
91
+    lypz, mxpz, lydj, lyxz, scnf, shnd, lycd, rksj, khid, khmc, tyxydm, input_time, update_time, 
92
+    data_type
93
+  </sql>
94
+  <select id="selectByExample" resultMap="BaseResultMap" parameterType="com.chinaitop.depot.business.model.BusinessContractReceiveExample" >
95
+    select
96
+    <if test="distinct" >
97
+      distinct
98
+    </if>
99
+    <include refid="Base_Column_List" />
100
+    from business_contract_receive
101
+    <if test="_parameter != null" >
102
+      <include refid="Example_Where_Clause" />
103
+    </if>
104
+    <if test="orderByClause != null" >
105
+      order by ${orderByClause}
106
+    </if>
107
+  </select>
108
+  <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
109
+    select 
110
+    <include refid="Base_Column_List" />
111
+    from business_contract_receive
112
+    where id = #{id,jdbcType=INTEGER}
113
+  </select>
114
+  <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
115
+    delete from business_contract_receive
116
+    where id = #{id,jdbcType=INTEGER}
117
+  </delete>
118
+  <delete id="deleteByExample" parameterType="com.chinaitop.depot.business.model.BusinessContractReceiveExample" >
119
+    delete from business_contract_receive
120
+    <if test="_parameter != null" >
121
+      <include refid="Example_Where_Clause" />
122
+    </if>
123
+  </delete>
124
+  <insert id="insert" parameterType="com.chinaitop.depot.business.model.BusinessContractReceive" >
125
+    insert into business_contract_receive (id, org_id, spt_htid, 
126
+      htbh, htlx, htzsl, 
127
+      htdj, htzj, yjsje, 
128
+      house_id, warehouse_id, lypz, 
129
+      mxpz, lydj, lyxz, scnf, 
130
+      shnd, lycd, rksj, 
131
+      khid, khmc, tyxydm, 
132
+      input_time, update_time, data_type
133
+      )
134
+    values (#{id,jdbcType=INTEGER}, #{orgId,jdbcType=INTEGER}, #{sptHtid,jdbcType=VARCHAR}, 
135
+      #{htbh,jdbcType=VARCHAR}, #{htlx,jdbcType=VARCHAR}, #{htzsl,jdbcType=DECIMAL}, 
136
+      #{htdj,jdbcType=DECIMAL}, #{htzj,jdbcType=DECIMAL}, #{yjsje,jdbcType=DECIMAL}, 
137
+      #{houseId,jdbcType=INTEGER}, #{warehouseId,jdbcType=INTEGER}, #{lypz,jdbcType=INTEGER}, 
138
+      #{mxpz,jdbcType=INTEGER}, #{lydj,jdbcType=INTEGER}, #{lyxz,jdbcType=INTEGER}, #{scnf,jdbcType=INTEGER}, 
139
+      #{shnd,jdbcType=INTEGER}, #{lycd,jdbcType=INTEGER}, #{rksj,jdbcType=TIMESTAMP}, 
140
+      #{khid,jdbcType=INTEGER}, #{khmc,jdbcType=VARCHAR}, #{tyxydm,jdbcType=VARCHAR}, 
141
+      #{inputTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP}, #{dataType,jdbcType=VARCHAR}
142
+      )
143
+  </insert>
144
+  <insert id="insertSelective" parameterType="com.chinaitop.depot.business.model.BusinessContractReceive" >
145
+    insert into business_contract_receive
146
+    <trim prefix="(" suffix=")" suffixOverrides="," >
147
+      <if test="id != null" >
148
+        id,
149
+      </if>
150
+      <if test="orgId != null" >
151
+        org_id,
152
+      </if>
153
+      <if test="sptHtid != null" >
154
+        spt_htid,
155
+      </if>
156
+      <if test="htbh != null" >
157
+        htbh,
158
+      </if>
159
+      <if test="htlx != null" >
160
+        htlx,
161
+      </if>
162
+      <if test="htzsl != null" >
163
+        htzsl,
164
+      </if>
165
+      <if test="htdj != null" >
166
+        htdj,
167
+      </if>
168
+      <if test="htzj != null" >
169
+        htzj,
170
+      </if>
171
+      <if test="yjsje != null" >
172
+        yjsje,
173
+      </if>
174
+      <if test="houseId != null" >
175
+        house_id,
176
+      </if>
177
+      <if test="warehouseId != null" >
178
+        warehouse_id,
179
+      </if>
180
+      <if test="lypz != null" >
181
+        lypz,
182
+      </if>
183
+      <if test="mxpz != null" >
184
+        mxpz,
185
+      </if>
186
+      <if test="lydj != null" >
187
+        lydj,
188
+      </if>
189
+      <if test="lyxz != null" >
190
+        lyxz,
191
+      </if>
192
+      <if test="scnf != null" >
193
+        scnf,
194
+      </if>
195
+      <if test="shnd != null" >
196
+        shnd,
197
+      </if>
198
+      <if test="lycd != null" >
199
+        lycd,
200
+      </if>
201
+      <if test="rksj != null" >
202
+        rksj,
203
+      </if>
204
+      <if test="khid != null" >
205
+        khid,
206
+      </if>
207
+      <if test="khmc != null" >
208
+        khmc,
209
+      </if>
210
+      <if test="tyxydm != null" >
211
+        tyxydm,
212
+      </if>
213
+      <if test="inputTime != null" >
214
+        input_time,
215
+      </if>
216
+      <if test="updateTime != null" >
217
+        update_time,
218
+      </if>
219
+      <if test="dataType != null" >
220
+        data_type,
221
+      </if>
222
+    </trim>
223
+    <trim prefix="values (" suffix=")" suffixOverrides="," >
224
+      <if test="id != null" >
225
+        #{id,jdbcType=INTEGER},
226
+      </if>
227
+      <if test="orgId != null" >
228
+        #{orgId,jdbcType=INTEGER},
229
+      </if>
230
+      <if test="sptHtid != null" >
231
+        #{sptHtid,jdbcType=VARCHAR},
232
+      </if>
233
+      <if test="htbh != null" >
234
+        #{htbh,jdbcType=VARCHAR},
235
+      </if>
236
+      <if test="htlx != null" >
237
+        #{htlx,jdbcType=VARCHAR},
238
+      </if>
239
+      <if test="htzsl != null" >
240
+        #{htzsl,jdbcType=DECIMAL},
241
+      </if>
242
+      <if test="htdj != null" >
243
+        #{htdj,jdbcType=DECIMAL},
244
+      </if>
245
+      <if test="htzj != null" >
246
+        #{htzj,jdbcType=DECIMAL},
247
+      </if>
248
+      <if test="yjsje != null" >
249
+        #{yjsje,jdbcType=DECIMAL},
250
+      </if>
251
+      <if test="houseId != null" >
252
+        #{houseId,jdbcType=INTEGER},
253
+      </if>
254
+      <if test="warehouseId != null" >
255
+        #{warehouseId,jdbcType=INTEGER},
256
+      </if>
257
+      <if test="lypz != null" >
258
+        #{lypz,jdbcType=INTEGER},
259
+      </if>
260
+      <if test="mxpz != null" >
261
+        #{mxpz,jdbcType=INTEGER},
262
+      </if>
263
+      <if test="lydj != null" >
264
+        #{lydj,jdbcType=INTEGER},
265
+      </if>
266
+      <if test="lyxz != null" >
267
+        #{lyxz,jdbcType=INTEGER},
268
+      </if>
269
+      <if test="scnf != null" >
270
+        #{scnf,jdbcType=INTEGER},
271
+      </if>
272
+      <if test="shnd != null" >
273
+        #{shnd,jdbcType=INTEGER},
274
+      </if>
275
+      <if test="lycd != null" >
276
+        #{lycd,jdbcType=INTEGER},
277
+      </if>
278
+      <if test="rksj != null" >
279
+        #{rksj,jdbcType=TIMESTAMP},
280
+      </if>
281
+      <if test="khid != null" >
282
+        #{khid,jdbcType=INTEGER},
283
+      </if>
284
+      <if test="khmc != null" >
285
+        #{khmc,jdbcType=VARCHAR},
286
+      </if>
287
+      <if test="tyxydm != null" >
288
+        #{tyxydm,jdbcType=VARCHAR},
289
+      </if>
290
+      <if test="inputTime != null" >
291
+        #{inputTime,jdbcType=TIMESTAMP},
292
+      </if>
293
+      <if test="updateTime != null" >
294
+        #{updateTime,jdbcType=TIMESTAMP},
295
+      </if>
296
+      <if test="dataType != null" >
297
+        #{dataType,jdbcType=VARCHAR},
298
+      </if>
299
+    </trim>
300
+  </insert>
301
+  <select id="countByExample" parameterType="com.chinaitop.depot.business.model.BusinessContractReceiveExample" resultType="java.lang.Integer" >
302
+    select count(*) from business_contract_receive
303
+    <if test="_parameter != null" >
304
+      <include refid="Example_Where_Clause" />
305
+    </if>
306
+  </select>
307
+  <update id="updateByExampleSelective" parameterType="map" >
308
+    update business_contract_receive
309
+    <set >
310
+      <if test="record.id != null" >
311
+        id = #{record.id,jdbcType=INTEGER},
312
+      </if>
313
+      <if test="record.orgId != null" >
314
+        org_id = #{record.orgId,jdbcType=INTEGER},
315
+      </if>
316
+      <if test="record.sptHtid != null" >
317
+        spt_htid = #{record.sptHtid,jdbcType=VARCHAR},
318
+      </if>
319
+      <if test="record.htbh != null" >
320
+        htbh = #{record.htbh,jdbcType=VARCHAR},
321
+      </if>
322
+      <if test="record.htlx != null" >
323
+        htlx = #{record.htlx,jdbcType=VARCHAR},
324
+      </if>
325
+      <if test="record.htzsl != null" >
326
+        htzsl = #{record.htzsl,jdbcType=DECIMAL},
327
+      </if>
328
+      <if test="record.htdj != null" >
329
+        htdj = #{record.htdj,jdbcType=DECIMAL},
330
+      </if>
331
+      <if test="record.htzj != null" >
332
+        htzj = #{record.htzj,jdbcType=DECIMAL},
333
+      </if>
334
+      <if test="record.yjsje != null" >
335
+        yjsje = #{record.yjsje,jdbcType=DECIMAL},
336
+      </if>
337
+      <if test="record.houseId != null" >
338
+        house_id = #{record.houseId,jdbcType=INTEGER},
339
+      </if>
340
+      <if test="record.warehouseId != null" >
341
+        warehouse_id = #{record.warehouseId,jdbcType=INTEGER},
342
+      </if>
343
+      <if test="record.lypz != null" >
344
+        lypz = #{record.lypz,jdbcType=INTEGER},
345
+      </if>
346
+      <if test="record.mxpz != null" >
347
+        mxpz = #{record.mxpz,jdbcType=INTEGER},
348
+      </if>
349
+      <if test="record.lydj != null" >
350
+        lydj = #{record.lydj,jdbcType=INTEGER},
351
+      </if>
352
+      <if test="record.lyxz != null" >
353
+        lyxz = #{record.lyxz,jdbcType=INTEGER},
354
+      </if>
355
+      <if test="record.scnf != null" >
356
+        scnf = #{record.scnf,jdbcType=INTEGER},
357
+      </if>
358
+      <if test="record.shnd != null" >
359
+        shnd = #{record.shnd,jdbcType=INTEGER},
360
+      </if>
361
+      <if test="record.lycd != null" >
362
+        lycd = #{record.lycd,jdbcType=INTEGER},
363
+      </if>
364
+      <if test="record.rksj != null" >
365
+        rksj = #{record.rksj,jdbcType=TIMESTAMP},
366
+      </if>
367
+      <if test="record.khid != null" >
368
+        khid = #{record.khid,jdbcType=INTEGER},
369
+      </if>
370
+      <if test="record.khmc != null" >
371
+        khmc = #{record.khmc,jdbcType=VARCHAR},
372
+      </if>
373
+      <if test="record.tyxydm != null" >
374
+        tyxydm = #{record.tyxydm,jdbcType=VARCHAR},
375
+      </if>
376
+      <if test="record.inputTime != null" >
377
+        input_time = #{record.inputTime,jdbcType=TIMESTAMP},
378
+      </if>
379
+      <if test="record.updateTime != null" >
380
+        update_time = #{record.updateTime,jdbcType=TIMESTAMP},
381
+      </if>
382
+      <if test="record.dataType != null" >
383
+        data_type = #{record.dataType,jdbcType=VARCHAR},
384
+      </if>
385
+    </set>
386
+    <if test="_parameter != null" >
387
+      <include refid="Update_By_Example_Where_Clause" />
388
+    </if>
389
+  </update>
390
+  <update id="updateByExample" parameterType="map" >
391
+    update business_contract_receive
392
+    set id = #{record.id,jdbcType=INTEGER},
393
+      org_id = #{record.orgId,jdbcType=INTEGER},
394
+      spt_htid = #{record.sptHtid,jdbcType=VARCHAR},
395
+      htbh = #{record.htbh,jdbcType=VARCHAR},
396
+      htlx = #{record.htlx,jdbcType=VARCHAR},
397
+      htzsl = #{record.htzsl,jdbcType=DECIMAL},
398
+      htdj = #{record.htdj,jdbcType=DECIMAL},
399
+      htzj = #{record.htzj,jdbcType=DECIMAL},
400
+      yjsje = #{record.yjsje,jdbcType=DECIMAL},
401
+      house_id = #{record.houseId,jdbcType=INTEGER},
402
+      warehouse_id = #{record.warehouseId,jdbcType=INTEGER},
403
+      lypz = #{record.lypz,jdbcType=INTEGER},
404
+      mxpz = #{record.mxpz,jdbcType=INTEGER},
405
+      lydj = #{record.lydj,jdbcType=INTEGER},
406
+      lyxz = #{record.lyxz,jdbcType=INTEGER},
407
+      scnf = #{record.scnf,jdbcType=INTEGER},
408
+      shnd = #{record.shnd,jdbcType=INTEGER},
409
+      lycd = #{record.lycd,jdbcType=INTEGER},
410
+      rksj = #{record.rksj,jdbcType=TIMESTAMP},
411
+      khid = #{record.khid,jdbcType=INTEGER},
412
+      khmc = #{record.khmc,jdbcType=VARCHAR},
413
+      tyxydm = #{record.tyxydm,jdbcType=VARCHAR},
414
+      input_time = #{record.inputTime,jdbcType=TIMESTAMP},
415
+      update_time = #{record.updateTime,jdbcType=TIMESTAMP},
416
+      data_type = #{record.dataType,jdbcType=VARCHAR}
417
+    <if test="_parameter != null" >
418
+      <include refid="Update_By_Example_Where_Clause" />
419
+    </if>
420
+  </update>
421
+  <update id="updateByPrimaryKeySelective" parameterType="com.chinaitop.depot.business.model.BusinessContractReceive" >
422
+    update business_contract_receive
423
+    <set >
424
+      <if test="orgId != null" >
425
+        org_id = #{orgId,jdbcType=INTEGER},
426
+      </if>
427
+      <if test="sptHtid != null" >
428
+        spt_htid = #{sptHtid,jdbcType=VARCHAR},
429
+      </if>
430
+      <if test="htbh != null" >
431
+        htbh = #{htbh,jdbcType=VARCHAR},
432
+      </if>
433
+      <if test="htlx != null" >
434
+        htlx = #{htlx,jdbcType=VARCHAR},
435
+      </if>
436
+      <if test="htzsl != null" >
437
+        htzsl = #{htzsl,jdbcType=DECIMAL},
438
+      </if>
439
+      <if test="htdj != null" >
440
+        htdj = #{htdj,jdbcType=DECIMAL},
441
+      </if>
442
+      <if test="htzj != null" >
443
+        htzj = #{htzj,jdbcType=DECIMAL},
444
+      </if>
445
+      <if test="yjsje != null" >
446
+        yjsje = #{yjsje,jdbcType=DECIMAL},
447
+      </if>
448
+      <if test="houseId != null" >
449
+        house_id = #{houseId,jdbcType=INTEGER},
450
+      </if>
451
+      <if test="warehouseId != null" >
452
+        warehouse_id = #{warehouseId,jdbcType=INTEGER},
453
+      </if>
454
+      <if test="lypz != null" >
455
+        lypz = #{lypz,jdbcType=INTEGER},
456
+      </if>
457
+      <if test="mxpz != null" >
458
+        mxpz = #{mxpz,jdbcType=INTEGER},
459
+      </if>
460
+      <if test="lydj != null" >
461
+        lydj = #{lydj,jdbcType=INTEGER},
462
+      </if>
463
+      <if test="lyxz != null" >
464
+        lyxz = #{lyxz,jdbcType=INTEGER},
465
+      </if>
466
+      <if test="scnf != null" >
467
+        scnf = #{scnf,jdbcType=INTEGER},
468
+      </if>
469
+      <if test="shnd != null" >
470
+        shnd = #{shnd,jdbcType=INTEGER},
471
+      </if>
472
+      <if test="lycd != null" >
473
+        lycd = #{lycd,jdbcType=INTEGER},
474
+      </if>
475
+      <if test="rksj != null" >
476
+        rksj = #{rksj,jdbcType=TIMESTAMP},
477
+      </if>
478
+      <if test="khid != null" >
479
+        khid = #{khid,jdbcType=INTEGER},
480
+      </if>
481
+      <if test="khmc != null" >
482
+        khmc = #{khmc,jdbcType=VARCHAR},
483
+      </if>
484
+      <if test="tyxydm != null" >
485
+        tyxydm = #{tyxydm,jdbcType=VARCHAR},
486
+      </if>
487
+      <if test="inputTime != null" >
488
+        input_time = #{inputTime,jdbcType=TIMESTAMP},
489
+      </if>
490
+      <if test="updateTime != null" >
491
+        update_time = #{updateTime,jdbcType=TIMESTAMP},
492
+      </if>
493
+      <if test="dataType != null" >
494
+        data_type = #{dataType,jdbcType=VARCHAR},
495
+      </if>
496
+    </set>
497
+    where id = #{id,jdbcType=INTEGER}
498
+  </update>
499
+  <update id="updateByPrimaryKey" parameterType="com.chinaitop.depot.business.model.BusinessContractReceive" >
500
+    update business_contract_receive
501
+    set org_id = #{orgId,jdbcType=INTEGER},
502
+      spt_htid = #{sptHtid,jdbcType=VARCHAR},
503
+      htbh = #{htbh,jdbcType=VARCHAR},
504
+      htlx = #{htlx,jdbcType=VARCHAR},
505
+      htzsl = #{htzsl,jdbcType=DECIMAL},
506
+      htdj = #{htdj,jdbcType=DECIMAL},
507
+      htzj = #{htzj,jdbcType=DECIMAL},
508
+      yjsje = #{yjsje,jdbcType=DECIMAL},
509
+      house_id = #{houseId,jdbcType=INTEGER},
510
+      warehouse_id = #{warehouseId,jdbcType=INTEGER},
511
+      lypz = #{lypz,jdbcType=INTEGER},
512
+      mxpz = #{mxpz,jdbcType=INTEGER},
513
+      lydj = #{lydj,jdbcType=INTEGER},
514
+      lyxz = #{lyxz,jdbcType=INTEGER},
515
+      scnf = #{scnf,jdbcType=INTEGER},
516
+      shnd = #{shnd,jdbcType=INTEGER},
517
+      lycd = #{lycd,jdbcType=INTEGER},
518
+      rksj = #{rksj,jdbcType=TIMESTAMP},
519
+      khid = #{khid,jdbcType=INTEGER},
520
+      khmc = #{khmc,jdbcType=VARCHAR},
521
+      tyxydm = #{tyxydm,jdbcType=VARCHAR},
522
+      input_time = #{inputTime,jdbcType=TIMESTAMP},
523
+      update_time = #{updateTime,jdbcType=TIMESTAMP},
524
+      data_type = #{dataType,jdbcType=VARCHAR}
525
+    where id = #{id,jdbcType=INTEGER}
526
+  </update>
527
+</mapper>