xiaoyong931011
2023-09-20 ccfb2b8dedaf1397a7f4ad012008b0f3de82ab7b
src/main/resources/mapper/dapp/DappAccountMoneyChangeDao.xml
@@ -27,7 +27,17 @@
        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>
    <select id="selectNewOneByMemberId" resultType="cc.mrbird.febs.dapp.entity.DappAccountMoneyChangeEntity">
        select a.*
        from dapp_account_money_change a
        where a.member_id = #{memberId}
          and a.type = 3
        order by a.create_time desc
        limit 1
    </select>
</mapper>