|
@@ -285,6 +285,9 @@
|
|
|
<if test="operId != null">
|
|
|
oper_id,
|
|
|
</if>
|
|
|
+ <if test="taxRate != null">
|
|
|
+ tax_rate,
|
|
|
+ </if>
|
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
<if test="id != null">
|
|
@@ -410,6 +413,9 @@
|
|
|
<if test="operId != null">
|
|
|
#{operId,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
+ <if test="taxRate != null">
|
|
|
+ #{taxRate},
|
|
|
+ </if>
|
|
|
</trim>
|
|
|
</insert>
|
|
|
<select id="countByExample" parameterType="com.jsh.erp.datasource.entities.DepotHeadExample" resultType="java.lang.Long">
|
|
@@ -709,7 +715,10 @@
|
|
|
depot_id = #{depotId,jdbcType=BIGINT},
|
|
|
</if>
|
|
|
<if test="operId != null">
|
|
|
- oper_id = #{operId,jdbcType=BIGINT}
|
|
|
+ oper_id = #{operId,jdbcType=BIGINT},
|
|
|
+ </if>
|
|
|
+ <if test="taxRate != null">
|
|
|
+ tax_rate = #{taxRate}
|
|
|
</if>
|
|
|
</set>
|
|
|
where id = #{id,jdbcType=BIGINT}
|