xiaoyong931011
2020-05-27 86dba4c9631c1c7d2f11a2fdd30427eeb5524105
src/main/resources/mapper/walletCoinOrder/OrderCoinDealDao.xml
@@ -6,14 +6,14 @@
       select * from coins_order_deal 
       <where>
          <if test="memberId != null  and  memberId  != ''">
              and memberid = #{memberId}
              and member_id = #{memberId}
          </if>
       </where>
       order by id desc
   </select>
   
   <select id="selectWalletCoinOrder" resultType="com.xcong.excoin.modules.coin.entity.OrderCoinsDealEntity">
      select * from coins_order_deal where order_id= #{orderId} and memberid = #{memberId}
      select * from coins_order_deal where order_id= #{orderId} and member_id = #{memberId}
   </select>
   
</mapper>