| | |
| | | |
| | | <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},'%') |