|
|
@@ -17,6 +17,7 @@
|
|
|
<result column="total" property="total" />
|
|
|
<result column="refund" property="refund" />
|
|
|
<result column="currency" property="currency" />
|
|
|
+ <result column="reason" property="reason" />
|
|
|
</resultMap>
|
|
|
|
|
|
<resultMap id="RefundVoMap" type="com.kym.entity.miniapp.vo.RefundVo">
|
|
|
@@ -34,11 +35,12 @@
|
|
|
<result column="total" property="total" />
|
|
|
<result column="refund" property="refund" />
|
|
|
<result column="currency" property="currency" />
|
|
|
+ <result column="reason" property="reason" />
|
|
|
</resultMap>
|
|
|
|
|
|
<!-- 通用查询结果列 -->
|
|
|
<sql id="Base_Column_List">
|
|
|
- id,user_id, refund_id, out_refund_no, transaction_id, out_trade_no, channel, user_received_account, success_time, status, funds_account, total, refund, currency,create_time,update_time
|
|
|
+ id,user_id, refund_id, out_refund_no, transaction_id, out_trade_no, channel, user_received_account, success_time, status, funds_account, total, refund, currency,reason,create_time,update_time
|
|
|
</sql>
|
|
|
|
|
|
|
|
|
@@ -58,7 +60,8 @@
|
|
|
t1.`total`,
|
|
|
t1.`refund`,
|
|
|
t1.`channel`,
|
|
|
- t1.`currency`
|
|
|
+ t1.`currency`,
|
|
|
+ t1.`reason`
|
|
|
FROM
|
|
|
t_refund_log t1
|
|
|
LEFT JOIN
|