KKSU
2024-07-05 f5d071be568c6ea2d19f3274043b10b5d3e95acf
src/main/resources/mapper/dapp/MemberCoinWithdrawMapper.xml
@@ -4,7 +4,8 @@
    <select id="findMemberWithdrawCoinInPage" resultType="cc.mrbird.febs.dapp.vo.AdminMemberCoinWithdrawVo">
        SELECT
        s.*
        s.address,
               m.address
        FROM
        member_coin_withdraw s
        left join dapp_member m on m.id = s.member_id
@@ -37,4 +38,15 @@
            and a.is_inside = #{type}
    </select>
    <select id="selectListByDate" resultType="cc.mrbird.febs.dapp.entity.MemberCoinWithdrawEntity">
        select
            *
        from
            member_coin_withdraw
        where date_format(create_time, '%Y-%m-%d') = date_format(#{date}, '%Y-%m-%d')
            and member_id = #{memberId}
    </select>
</mapper>