Helius
2021-03-23 1fcc3c32f8755c6a9b39e38c598aa5dd9af4212f
src/main/resources/mapper/walletCoinOrder/OrderCoinsDao.xml
@@ -12,11 +12,18 @@
         <if test="symbol != null and symbol !=''">
             and a.symbol = #{symbol}
         </if>
         order by create_time desc
   </select>
   
   <select id="findWalletCoinOrderByOrderNo" resultType="com.xcong.excoin.modules.coin.entity.OrderCoinsEntity">
      
   SELECT *  FROM coins_order a where a.order_no= #{orderNo}  
   </select>
   <select id="selectAllEntrustingCoinOrderList" resultType="com.xcong.excoin.modules.coin.entity.OrderCoinsEntity">
      select *
      from coins_order
      where order_status=1
   </select>
</mapper>