| | |
| | | select *
|
| | | from coins_order
|
| | | where order_status=1
|
| | | <if test="list != null">
|
| | | and symbol not in
|
| | | <foreach collection="list" separator="," item="item" open="(" close=")">
|
| | | #{item}
|
| | | </foreach>
|
| | | </if>
|
| | | </select>
|
| | |
|
| | | <select id="selectCoinOrderOnTrade" resultType="com.xcong.excoin.modules.coin.entity.OrderCoinsEntity">
|
| | | select *
|
| | | from coins_order
|
| | | where order_status=1
|
| | | <if test="list != null">
|
| | | and symbol in
|
| | | <foreach collection="list" separator="," item="item" open="(" close=")">
|
| | | #{item}
|
| | | </foreach>
|
| | | </if>
|
| | | </select>
|
| | | </mapper>
|