|
@@ -6,6 +6,7 @@
|
|
|
<result column="all_pay_sn" property="allPaySn" jdbcType="VARCHAR" />
|
|
|
<result column="merch_sn" property="merchSn" jdbcType="VARCHAR" />
|
|
|
<result column="merch_name" property="merchName" jdbcType="VARCHAR" />
|
|
|
+ <result column="merch_erp_order_sn" property="merchErpOrderSn" jdbcType="VARCHAR" />
|
|
|
<result column="plat_sn" property="platSn" jdbcType="VARCHAR" />
|
|
|
<result column="plat_name" property="platName" jdbcType="VARCHAR" />
|
|
|
<result column="third_party_merch_code" property="thirdPartyMerchCode" jdbcType="VARCHAR" />
|
|
@@ -31,7 +32,7 @@
|
|
|
<result column="tstm" property="tstm" jdbcType="TIMESTAMP" />
|
|
|
</resultMap>
|
|
|
<sql id="Base_Column_List" >
|
|
|
- noti_sn, all_pay_sn, merch_sn, merch_name, plat_sn, plat_name, third_party_merch_code,
|
|
|
+ noti_sn, all_pay_sn, merch_sn, merch_name, merch_erp_order_sn,plat_sn, plat_name, third_party_merch_code,
|
|
|
third_party_merch_name, all_merch_id, all_order_no, all_pay_no, all_sub_order_no,
|
|
|
pay_chnl_flag, buyer_payer_check, noti_count, is_stoped, cus_decl_status, noti_statue,
|
|
|
code, msg, notify_url, remark, creater_sn, create_time, moder_sn, mod_time, tstm
|
|
@@ -62,6 +63,9 @@
|
|
|
<if test="merchName != null" >
|
|
|
merch_name,
|
|
|
</if>
|
|
|
+ <if test="merchErpOrderSn != null">
|
|
|
+ merch_erp_order_sn,
|
|
|
+ </if>
|
|
|
<if test="platSn != null" >
|
|
|
plat_sn,
|
|
|
</if>
|
|
@@ -145,6 +149,9 @@
|
|
|
<if test="merchName != null" >
|
|
|
#{merchName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
+ <if test="merchErpOrderSn != null">
|
|
|
+ #{merchErpOrderSn, jdbcType=VARCHAR}
|
|
|
+ </if>
|
|
|
<if test="platSn != null" >
|
|
|
#{platSn,jdbcType=VARCHAR},
|
|
|
</if>
|
|
@@ -228,6 +235,9 @@
|
|
|
<if test="merchName != null" >
|
|
|
merch_name = #{merchName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
+ <if test="merchErpOrderSn != null">
|
|
|
+ merch_erp_order_sn = #{merchErpOrderSn, jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
<if test="platSn != null" >
|
|
|
plat_sn = #{platSn,jdbcType=VARCHAR},
|
|
|
</if>
|
|
@@ -314,6 +324,7 @@
|
|
|
all_pay_sn,
|
|
|
merch_sn,
|
|
|
merch_name,
|
|
|
+ merch_erp_order_sn,
|
|
|
plat_sn,
|
|
|
plat_name,
|
|
|
third_party_merch_code,
|
|
@@ -344,6 +355,7 @@
|
|
|
#{item.allPaySn,jdbcType=VARCHAR},
|
|
|
#{item.merchSn,jdbcType=VARCHAR},
|
|
|
#{item.merchName,jdbcType=VARCHAR},
|
|
|
+ #{item.merchErpOrderSn, jdbcType=VARCHAR},
|
|
|
#{item.platSn,jdbcType=VARCHAR},
|
|
|
#{item.platName,jdbcType=VARCHAR},
|
|
|
#{item.thirdPartyMerchCode,jdbcType=VARCHAR},
|
|
@@ -382,6 +394,9 @@
|
|
|
<if test="item.merchName != null" >
|
|
|
merch_name = #{item.merchName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
+ <if test="item.merchErpOrderSn != null">
|
|
|
+ merch_erp_order_sn = #{item.merchErpOrderSn,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
<if test="item.platSn != null" >
|
|
|
plat_sn = #{item.platSn,jdbcType=VARCHAR},
|
|
|
</if>
|