xiaoyong931011
2023-08-15 f9b6accb4ca10a20ff293ff53c371b53e68ee96f
src/main/resources/mapper/dapp/DappAccountMoneyChangeDao.xml
@@ -13,6 +13,21 @@
                and a.type=#{record.type}
            </if>
        </where>
        order by a.create_time desc
    </select>
    <select id="selectMemberMoneyFlowInPage" resultType="cc.mrbird.febs.dapp.vo.MemberMoneyFlowVo">
        select a.*
        from dapp_account_money_change a
        where a.member_id = #{record.id}
        order by a.create_time desc
    </select>
    <select id="getChangeInPageInPage" resultType="cc.mrbird.febs.dapp.entity.DappAccountMoneyChangeEntity">
        select a.*
        from dapp_account_money_change a
        where a.member_id = #{record.memberId}
        order by a.create_time desc
    </select>
</mapper>