新版仿ok交易所-后端
zyy
2025-09-13 c813127ed4507fdbb241d2ae7c275f280c5ade25
trading-order-service/src/main/java/com/yami/trading/service/item/ItemService.java
@@ -269,8 +269,8 @@
    public boolean isSuspended(String symbol) {
        Item item = findBySymbol(symbol);
        //虚拟币新币才判断
        if (item.getType().equals(Item.cryptos) && (item.getCurrencyType() != null && item.getCurrencyType() == 1)) {
            item = getById(item.getUuid());
        if (item.getType().equals(Item.cryptos) /*&& (item.getCurrencyType() != null && item.getCurrencyType() == 1)*/) {
            //item = getById(item.getUuid());
            if (item.getStatus() != null && item.getStatus() == 0) {
                return true;
            }