Helius
2021-05-21 d30d959c8f249c20b39e66dd0c48341a77751d21
src/main/resources/mapper/otc/OtcOrderDao.xml
@@ -68,7 +68,7 @@
        select count(1) from otc_order
        where entrust_member_id=#{entrustMemberId} and entrust_member_id!=member_id
        <if test="status != null">
            and status #{status}
            and status = #{status}
        </if>
    </select>
@@ -81,7 +81,7 @@
    <select id="selectMemberAvgCoinTime" resultType="java.math.BigDecimal">
        select
            IFNULL(sum(timestampdiff(SECOND, pay_time, coin_time))/count(1), 0)
            IFNULL(sum(timestampdiff(SECOND, pay_time, finish_time))/count(1), 0)
        from otc_order
        where status=3 and member_id=40 and order_type='S'
    </select>