zainali5120
2020-09-16 d174d6963d62b3bd176f9e7ba3cf0d7f75a91b69
src/main/resources/mapper/walletCoinOrder/OrderCoinDealDao.xml
@@ -20,12 +20,15 @@
            deal_amount buyTurnover,
            deal_amount sellTurnover,
            order_type direction,
            create_time time
            UNIX_TIMESTAMP(create_time) time
        from coins_order_deal
        where symbol = #{symbol}
        and order_type  = 1
        and order_status = 3
        and create_time between #{startTime} and #{endTime}
        <if test="startTime != null and endTime != null">
              and create_time between #{startTime} and #{endTime}
          </if>
   </select>
    <select id="selectAllWalletCoinOrderBySymbol"
            resultType="com.xcong.excoin.modules.coin.entity.OrderCoinsDealEntity">