xiaoyong931011
2023-08-15 a6c906e243f86cdcab0c81c82ee0568276d0c299
src/main/resources/mapper/dapp/DappAccountMoneyChangeDao.xml
@@ -13,6 +13,22 @@
                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}
        and a.type = 3
        order by a.create_time desc
    </select>
</mapper>