Helius
2022-06-17 c456a6adeaf414f74cb2ef1e3c786285804e0e5c
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},'%')