KKSU
2024-07-15 35370aa39a08c9ba96f9bd2a5e9d6ac721fe98d6
src/main/resources/mapper/dapp/DappStorageMapper.xml
@@ -130,4 +130,20 @@
    </select>
    <select id="selectSumByAmountDescFiveToFive" resultType="cc.mrbird.febs.dapp.entity.DappStorage">
        SELECT
            member_id memberId,
            sum(amount) amount
        FROM
            dapp_storage
        where
            create_time &gt;= #{startTime}
        GROUP BY
            member_id
        ORDER BY
            amount DESC
            limit #{offset},#{count}
    </select>
</mapper>