|
@@ -64,6 +64,8 @@
|
64
|
64
|
<result column="shsj" property="shsj" jdbcType="DATE" />
|
65
|
65
|
<result column="jddw" property="jddw" jdbcType="VARCHAR" />
|
66
|
66
|
<result column="jdsj" property="jdsj" jdbcType="VARCHAR" />
|
|
67
|
+ <result column="create_time" property="createTime" jdbcType="TIMESTAMP" />
|
|
68
|
+ <result column="sbyqid" property="sbyqid" jdbcType="INTEGER" />
|
67
|
69
|
</resultMap>
|
68
|
70
|
<sql id="Example_Where_Clause" >
|
69
|
71
|
<where >
|
|
@@ -129,7 +131,7 @@
|
129
|
131
|
creator_code, create_date, refresher, refresher_code, refresh_time, remark, sfba,
|
130
|
132
|
szdwmc, szdwdm, jszt, sbsl, jscs, sblx, mqzt, sfzc, ccbm, sbbm, qyrq, ssfl, jg_id,
|
131
|
133
|
fzd, sbdwmc, zcbh, scrq, rkrq, sbflbh, pzr, cgr, wxdh, bxqx, sblxbh, sbazr, shrmc,
|
132
|
|
- shyj, shsj, jddw, jdsj
|
|
134
|
+ shyj, shsj, jddw, jdsj, create_time, sbyqid
|
133
|
135
|
</sql>
|
134
|
136
|
<select id="selectByExample" resultMap="BaseResultMap" parameterType="com.chinaitop.depot.device.model.DSbxxsjyExample" >
|
135
|
137
|
select
|
|
@@ -169,7 +171,7 @@
|
169
|
171
|
zcbh, scrq, rkrq, sbflbh,
|
170
|
172
|
pzr, cgr, wxdh, bxqx,
|
171
|
173
|
sblxbh, sbazr, shrmc,
|
172
|
|
- shyj, shsj, jddw, jdsj)
|
|
174
|
+ shyj, shsj, jddw, jdsj, create_time, sbyqid)
|
173
|
175
|
values (#{sbbh,jdbcType=VARCHAR}, #{sbyqmc,jdbcType=VARCHAR}, #{kddm,jdbcType=VARCHAR},
|
174
|
176
|
#{sbggxh,jdbcType=VARCHAR}, #{sbms,jdbcType=VARCHAR}, #{sbzt,jdbcType=VARCHAR},
|
175
|
177
|
#{sbfl,jdbcType=VARCHAR}, #{sccj,jdbcType=VARCHAR}, #{cgjg,jdbcType=VARCHAR}, #{sbglz,jdbcType=VARCHAR},
|
|
@@ -187,7 +189,8 @@
|
187
|
189
|
#{zcbh,jdbcType=VARCHAR}, #{scrq,jdbcType=DATE}, #{rkrq,jdbcType=DATE}, #{sbflbh,jdbcType=VARCHAR},
|
188
|
190
|
#{pzr,jdbcType=VARCHAR}, #{cgr,jdbcType=VARCHAR}, #{wxdh,jdbcType=VARCHAR}, #{bxqx,jdbcType=VARCHAR},
|
189
|
191
|
#{sblxbh,jdbcType=VARCHAR}, #{sbazr,jdbcType=VARCHAR}, #{shrmc,jdbcType=VARCHAR},
|
190
|
|
- #{shyj,jdbcType=VARCHAR}, #{shsj,jdbcType=DATE}, #{jddw,jdbcType=VARCHAR}, #{jdsj,jdbcType=VARCHAR})
|
|
192
|
+ #{shyj,jdbcType=VARCHAR}, #{shsj,jdbcType=DATE}, #{jddw,jdbcType=VARCHAR}, #{jdsj,jdbcType=VARCHAR},
|
|
193
|
+ #{createTime,jdbcType=TIMESTAMP}, #{sbyqid,jdbcType=INTEGER})
|
191
|
194
|
</insert>
|
192
|
195
|
<insert id="insertSelective" parameterType="com.chinaitop.depot.device.model.DSbxxsjy" >
|
193
|
196
|
insert into d_sbxxsjy
|
|
@@ -378,6 +381,12 @@
|
378
|
381
|
<if test="jdsj != null">
|
379
|
382
|
jdsj,
|
380
|
383
|
</if>
|
|
384
|
+ <if test="createTime != null">
|
|
385
|
+ create_time,
|
|
386
|
+ </if>
|
|
387
|
+ <if test="sbyqid != null">
|
|
388
|
+ sbyqid,
|
|
389
|
+ </if>
|
381
|
390
|
</trim>
|
382
|
391
|
<trim prefix="values (" suffix=")" suffixOverrides="," >
|
383
|
392
|
<if test="sbbh != null" >
|
|
@@ -566,6 +575,12 @@
|
566
|
575
|
<if test="jdsj != null">
|
567
|
576
|
#{jdsj,jdbcType=VARCHAR},
|
568
|
577
|
</if>
|
|
578
|
+ <if test="createTime != null">
|
|
579
|
+ #{createTime,jdbcType=TIMESTAMP},
|
|
580
|
+ </if>
|
|
581
|
+ <if test="sbyqid != null">
|
|
582
|
+ #{sbyqid,jdbcType=INTEGER},
|
|
583
|
+ </if>
|
569
|
584
|
</trim>
|
570
|
585
|
</insert>
|
571
|
586
|
<select id="countByExample" parameterType="com.chinaitop.depot.device.model.DSbxxsjyExample" resultType="java.lang.Integer" >
|
|
@@ -763,6 +778,12 @@
|
763
|
778
|
<if test="record.jdsj != null">
|
764
|
779
|
jdsj = #{record.jdsj,jdbcType=VARCHAR},
|
765
|
780
|
</if>
|
|
781
|
+ <if test="record.createTime != null">
|
|
782
|
+ create_time = #{record.createTime,jdbcType=TIMESTAMP},
|
|
783
|
+ </if>
|
|
784
|
+ <if test="record.sbyqid != null">
|
|
785
|
+ sbyqid = #{record.sbyqid,jdbcType=INTEGER},
|
|
786
|
+ </if>
|
766
|
787
|
</set>
|
767
|
788
|
<if test="_parameter != null" >
|
768
|
789
|
<include refid="Update_By_Example_Where_Clause" />
|
|
@@ -831,7 +852,9 @@
|
831
|
852
|
shyj = #{record.shyj,jdbcType=VARCHAR},
|
832
|
853
|
shsj = #{record.shsj,jdbcType=DATE},
|
833
|
854
|
jddw = #{record.jddw,jdbcType=VARCHAR},
|
834
|
|
- jdsj = #{record.jdsj,jdbcType=VARCHAR}
|
|
855
|
+ jdsj = #{record.jdsj,jdbcType=VARCHAR},
|
|
856
|
+ create_time = #{record.createTime,jdbcType=TIMESTAMP},
|
|
857
|
+ sbyqid = #{record.sbyqid,jdbcType=INTEGER}
|
835
|
858
|
<if test="_parameter != null" >
|
836
|
859
|
<include refid="Update_By_Example_Where_Clause" />
|
837
|
860
|
</if>
|