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