新增支付机构字段

This commit is contained in:
2023-05-22 13:51:46 +08:00
parent 71329f7461
commit ae07c614d0

View File

@@ -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>