Helius
2021-03-31 dcf8680d142c5d38e891a509d4fa9c5515b44c73
src/main/java/com/xcong/excoin/modules/contract/parameter/vo/OrderListVo.java
@@ -97,7 +97,7 @@
    }
    public String getOpeningFeeAmount() {
        return CommonUtils.amountDotFormat(this.symbol, openingFeeAmount);
        return openingFeeAmount == null ? "" : openingFeeAmount.setScale(2, BigDecimal.ROUND_DOWN).toPlainString();
    }
    public String getForceClosingPrice() {
@@ -105,14 +105,14 @@
    }
    public String getClosingFeeAmount() {
        return CommonUtils.amountDotFormat(this.symbol, closingFeeAmount);
        return closingFeeAmount == null ? "" : closingFeeAmount.setScale(2, BigDecimal.ROUND_DOWN).toPlainString();
    }
    public String getBondAmount() {
        return CommonUtils.amountDotFormat(this.symbol, bondAmount);
        return bondAmount == null ? "" : bondAmount.setScale(2, BigDecimal.ROUND_DOWN).toPlainString();
    }
    public String getRewardAmount() {
        return CommonUtils.amountDotFormat(this.symbol, rewardAmount);
        return rewardAmount == null ? "" : rewardAmount.setScale(2, BigDecimal.ROUND_DOWN).toPlainString();
    }
}