xiaoyong931011
2021-03-26 3d0aa53f29bf42e9f2a28cdbbd109f0e9bb86e7c
src/main/resources/mapper/contract/ContractOrderDao.xml
@@ -90,4 +90,21 @@
        where order_no=#{orderNo}
        and order_type in (1,2) and order_status=1
    </select>
    <update id="updateOrderProfitOrLessById">
        update contract_order
        set reward_amount=#{rewardAmount},
        reward_ratio=#{rewardRatio}
        where id=#{id}
    </update>
    <select id="getBurstUsdtByMemberId" resultType="java.math.BigDecimal">
        SELECT
            IFNULL(SUM(reward_amount), 0)
        FROM
            contract_order
        WHERE
            closing_type IN (4, 5)
            and member_id=#{memberId}
    </select>
</mapper>