From aa36fd2b101de29185ece203083f675b19a27a2d Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Fri, 17 Jun 2022 17:54:00 +0800
Subject: [PATCH] 20220528

---
 src/main/resources/mapper/modules/MallMoneyFlowMapper.xml |   10 +++++++---
 1 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/src/main/resources/mapper/modules/MallMoneyFlowMapper.xml b/src/main/resources/mapper/modules/MallMoneyFlowMapper.xml
index eded054..f22498a 100644
--- a/src/main/resources/mapper/modules/MallMoneyFlowMapper.xml
+++ b/src/main/resources/mapper/modules/MallMoneyFlowMapper.xml
@@ -68,14 +68,18 @@
 
     <select id="getMoneyChargeListInPage" resultType="cc.mrbird.febs.mall.vo.AdminMoneyChargeListVo">
         select
-        a.*,
+        a.id id,
+        a.created_time createdTime,
+        a.amount amount,
+        a.amount_fee amountFee,
+        a.withdraw_no withdrawNo,
+        a.status status,
         b.name,
         b.bind_phone bindPhone,
         b.phone
-        from mall_money_flow a
+        from mall_member_withdraw a
         inner join mall_member b on a.member_id=b.id
         <where>
-            a.type = 6
             <if test="record != null" >
                 <if test="record.name!=null and record.name!=''">
                     and b.name like concat('%',  #{record.name},'%')

--
Gitblit v1.9.1