KKSU
2024-04-29 2a15d38ae05314799daa24e26779e036c5ec8f39
src/main/resources/mapper/dapp/DappAchieveMapper.xml
@@ -29,4 +29,24 @@
        order by a.create_time desc
    </select>
    <select id="selectListByMemberId" resultType="cc.mrbird.febs.dapp.entity.DappAchieve">
        select
        a.*
        from dapp_achieve a
        where a.member_id = #{memberId}
    </select>
    <select id="selectGoldAmountByMemberId" resultType="java.math.BigDecimal">
        select ifnull(sum(a.gold_amount), 0)
        from dapp_member_fund a
        where a.member_id = #{memberId}
    </select>
    <select id="selectCoinAmountByMemberId" resultType="java.math.BigDecimal">
        select ifnull(sum(a.coin_amount), 0)
        from dapp_member_fund a
        where a.member_id = #{memberId}
    </select>
</mapper>