|
@@ -48,6 +48,7 @@
|
|
|
<result column="pay_time" property="payTime" jdbcType="TIMESTAMP" />
|
|
|
<result column="expr_type" property="exprType" jdbcType="CHAR" />
|
|
|
<result column="expr_comp_id" property="exprCompId" jdbcType="VARCHAR" />
|
|
|
+ <result column="expr_agreement_type" property="exprAgreementType" jdbcType="CHAR" />
|
|
|
<result column="decl_expr_fee" property="declExprFee" jdbcType="DECIMAL" />
|
|
|
<result column="batch_numbers" property="batchNumbers" jdbcType="VARCHAR" />
|
|
|
<result column="decl_post_tax" property="declPostTax" jdbcType="DECIMAL" />
|
|
@@ -82,7 +83,7 @@
|
|
|
consignee_city, consignee_district_code, consignee_district, consignee_address, consignee_zip_code,
|
|
|
payer_name, payer_id_type, payer_id_code, payer_mob, pay_ent_cus_code, pay_no, goods_value,
|
|
|
freight, discount, tax_total, actural_paid, pay_time, expr_type, expr_comp_id, decl_expr_fee,
|
|
|
- batch_numbers, decl_post_tax, shop_id, extra_tag, currency_code, ws_flag, buyer_pay_check, wx_order_detail, clec_order_status,
|
|
|
+ batch_numbers, decl_post_tax, shop_id, extra_tag, currency_code, ws_flag, buyer_pay_check, wx_order_detail, clec_order_status,expr_agreement_type,
|
|
|
way_order_status, project_check_status, play_order_status, remark, creater_sn, create_time,
|
|
|
moder_sn, mod_time, tstm, ex_field, ex_field2, ex_field3, ex_field4, ex_field5
|
|
|
</sql>
|
|
@@ -237,6 +238,9 @@
|
|
|
<if test="exprCompId != null" >
|
|
|
expr_comp_id,
|
|
|
</if>
|
|
|
+ <if test="exprAgreementType != null" >
|
|
|
+ expr_agreement_type,
|
|
|
+ </if>
|
|
|
<if test="declExprFee != null" >
|
|
|
decl_expr_fee,
|
|
|
</if>
|
|
@@ -449,6 +453,9 @@
|
|
|
<if test="exprCompId != null" >
|
|
|
#{exprCompId,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
+ <if test="exprAgreementType != null" >
|
|
|
+ #{exprAgreementType,jdbcType=CHAR},
|
|
|
+ </if>
|
|
|
<if test="declExprFee != null" >
|
|
|
#{declExprFee,jdbcType=DECIMAL},
|
|
|
</if>
|
|
@@ -661,6 +668,9 @@
|
|
|
<if test="exprCompId != null" >
|
|
|
expr_comp_id = #{exprCompId,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
+ <if test="exprAgreementType != null" >
|
|
|
+ expr_agreement_type = #{exprAgreementType,jdbcType=CHAR},
|
|
|
+ </if>
|
|
|
<if test="declExprFee != null" >
|
|
|
decl_expr_fee = #{declExprFee,jdbcType=DECIMAL},
|
|
|
</if>
|