|
|
@@ -98,6 +98,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="zyyDivAmount" column="zyy_div_amount" />
|
|
|
<result property="zyyHuifuId" column="zyy_huifu_id" />
|
|
|
<result property="tagNames" column="tag_names" />
|
|
|
+ <result property="erpType" column="erp_type" />
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectFsStoreOrderVo">
|
|
|
@@ -248,6 +249,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="zyyDivAmount != null">zyy_div_amount,</if>
|
|
|
<if test="zyyHuifuId != null">zyy_huifu_id,</if>
|
|
|
<if test="tagNames != null">tag_names,</if>
|
|
|
+ <if test="erpType != null">erp_type,</if>
|
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
<if test="storeId != null">#{storeId},</if>
|
|
|
@@ -341,6 +343,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="divAmount != null">#{divAmount},</if>
|
|
|
<if test="zyyDivAmount != null">#{zyyDivAmount},</if>
|
|
|
<if test="tagNames != null">#{tagNames},</if>
|
|
|
+ <if test="erpType != null">#{erpType},</if>
|
|
|
</trim>
|
|
|
</insert>
|
|
|
|
|
|
@@ -439,6 +442,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="divAmount != null and divAmount != ''">div_amount = #{divAmount},</if>
|
|
|
<if test="zyyDivAmount != null and zyyDivAmount != ''">zyy_div_amount = #{zyyDivAmount},</if>
|
|
|
<if test="tagNames != null and tagNames != ''">tag_names = #{tagNames},</if>
|
|
|
+ <if test="erpType != null">erp_type = #{erpType},</if>
|
|
|
</trim>
|
|
|
where order_id = #{orderId}
|
|
|
</update>
|