From ce4fb58f85eefe9fe6bb6213d8f1576d1925a5ef Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Tue, 07 Jul 2020 19:15:35 +0800 Subject: [PATCH] Merge branch 'master' of https://gitee.com/chonggaoxiao/new_excoin --- src/main/java/com/xcong/excoin/modules/contract/parameter/vo/OrderListVo.java | 17 ++++++++++++++++- 1 files changed, 16 insertions(+), 1 deletions(-) diff --git a/src/main/java/com/xcong/excoin/modules/contract/parameter/vo/OrderListVo.java b/src/main/java/com/xcong/excoin/modules/contract/parameter/vo/OrderListVo.java index 8d99c52..221d480 100644 --- a/src/main/java/com/xcong/excoin/modules/contract/parameter/vo/OrderListVo.java +++ b/src/main/java/com/xcong/excoin/modules/contract/parameter/vo/OrderListVo.java @@ -42,7 +42,7 @@ private int symbolCnt; @ApiModelProperty("已实现盈亏") - private BigDecimal rewardRatio; + private BigDecimal rewardAmount; @ApiModelProperty("平仓类型 2平多3平空4爆仓平多5爆仓平空6止盈平多7止盈平空8止损平多9止损平空") private int closingType; @@ -54,7 +54,22 @@ @ApiModelProperty("平仓时间") private Date closingTime; + @ApiModelProperty("平仓价格") + private BigDecimal closingPrice; + @ApiModelProperty("强平价") private BigDecimal forceClosingPrice; + @ApiModelProperty(value = "交易类型 1-市价 2-限价") + private Integer tradeType; + + public BigDecimal getOpeningFeeAmount() { + return openingFeeAmount == null ? openingFeeAmount : openingFeeAmount.setScale(8, BigDecimal.ROUND_DOWN); + } + + + public BigDecimal getClosingFeeAmount() { + return closingFeeAmount == null ? closingFeeAmount : closingFeeAmount.setScale(8, BigDecimal.ROUND_DOWN); + } + } -- Gitblit v1.9.1