mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-03 17:40:13 +08:00
新增支付机构字段
This commit is contained in:
@@ -10,6 +10,7 @@
|
||||
<result column="member_id" jdbcType="VARCHAR" property="memberId" />
|
||||
<result column="action_type" jdbcType="VARCHAR" property="actionType" />
|
||||
<result column="pay_mode" jdbcType="VARCHAR" property="payMode" />
|
||||
<result column="payment_institutions" jdbcType="VARCHAR" property="paymentInstitutions" />
|
||||
<result column="amount" jdbcType="VARCHAR" property="amount" />
|
||||
<result column="out_trade_no" jdbcType="VARCHAR" property="outTradeNo" />
|
||||
<result column="transaction_id" jdbcType="VARCHAR" property="transactionId" />
|
||||
@@ -19,7 +20,7 @@
|
||||
</resultMap>
|
||||
<sql id="Base_Column_List">
|
||||
<!--@mbg.generated-->
|
||||
id, order_code, scenario_type, member_id, action_type, pay_mode, amount, out_trade_no,
|
||||
id, order_code, scenario_type, member_id, action_type, pay_mode, payment_institutions, amount, out_trade_no,
|
||||
transaction_id, out_refund_no, refund_id, create_time
|
||||
</sql>
|
||||
|
||||
@@ -45,6 +46,9 @@
|
||||
<if test="payMode != null and payMode != ''">
|
||||
pay_mode,
|
||||
</if>
|
||||
<if test="paymentInstitutions != null and paymentInstitutions != ''">
|
||||
payment_institutions,
|
||||
</if>
|
||||
<if test="amount != null and amount != ''">
|
||||
amount,
|
||||
</if>
|
||||
@@ -83,6 +87,9 @@
|
||||
<if test="payMode != null and payMode != ''">
|
||||
#{payMode,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="paymentInstitutions != null and paymentInstitutions != ''">
|
||||
#{paymentInstitutions,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="amount != null and amount != ''">
|
||||
#{amount,jdbcType=VARCHAR},
|
||||
</if>
|
||||
|
||||
Reference in New Issue
Block a user