|
|
@@ -41,6 +41,7 @@
|
|
|
<result column="createTime" property="createTime" jdbcType="TIMESTAMP" />
|
|
|
<result column="rb_auditman" property="rb_auditman" jdbcType="VARCHAR" />
|
|
|
<result column="rb_auditdate" property="rb_auditdate" jdbcType="TIMESTAMP" />
|
|
|
+ <result column="rb_amount" property="rb_amount" jdbcType="DOUBLE" />
|
|
|
</resultMap>
|
|
|
<sql id="Example_Where_Clause">
|
|
|
<where>
|
|
|
@@ -105,7 +106,7 @@
|
|
|
rb_rdamount, rb_rbdamount, rb_preamount, rb_discounts, rb_havebalance, rb_status, rb_statuscode, rb_remark,
|
|
|
recbalance.companyId,
|
|
|
recbalance.updaterId,recbalance.updatedate, rb_text1, rb_text2, rb_text3, rb_text4, rb_text5,
|
|
|
- recbalance.creatorName, recbalance.createTime, rb_auditman, rb_auditdate
|
|
|
+ recbalance.creatorName, recbalance.createTime, rb_auditman, rb_auditdate, rb_amount
|
|
|
</sql>
|
|
|
<sql id="left_Column_List">
|
|
|
cu_leftamount
|
|
|
@@ -273,6 +274,9 @@
|
|
|
<if test="createTime != null" >
|
|
|
createTime,
|
|
|
</if>
|
|
|
+ <if test="rb_amount != null">
|
|
|
+ rb_amount,
|
|
|
+ </if>
|
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
<if test="rb_code != null">
|
|
|
@@ -347,6 +351,9 @@
|
|
|
<if test="createTime != null" >
|
|
|
#{createTime,jdbcType=TIMESTAMP},
|
|
|
</if>
|
|
|
+ <if test="rb_amount != null">
|
|
|
+ #{rb_amount,jdbcType=DOUBLE},
|
|
|
+ </if>
|
|
|
</trim>
|
|
|
<selectKey resultType="Long" keyProperty="id" order="AFTER">
|
|
|
SELECT LAST_INSERT_ID()
|
|
|
@@ -433,6 +440,9 @@
|
|
|
<if test="record.rb_text5 != null">
|
|
|
rb_text5 = #{record.rb_text5,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
+ <if test="pb_amount != null">
|
|
|
+ pb_amount = #{pb_amount,jdbcType=DOUBLE},
|
|
|
+ </if>
|
|
|
</set>
|
|
|
<if test="_parameter != null">
|
|
|
<include refid="Update_By_Example_Where_Clause" />
|
|
|
@@ -536,6 +546,9 @@
|
|
|
</if>
|
|
|
<if test="rb_text5 != null">
|
|
|
rb_text5 = #{rb_text5,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="rb_amount != null">
|
|
|
+ rb_amount = #{rb_amount,jdbcType=DOUBLE},
|
|
|
</if>
|
|
|
rb_auditman = #{rb_auditman,jdbcType=VARCHAR},
|
|
|
rb_auditdate = #{rb_auditdate,jdbcType=TIMESTAMP}
|