|  |  | 
 |  |  |     @ApiModelProperty(value = "张数") | 
 |  |  |     private int symbolCnt; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "可平张数") | 
 |  |  |     private int symbolCntSale; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "回报率") | 
 |  |  |     private BigDecimal returnRate; | 
 |  |  |  | 
 |  |  | 
 |  |  |     @ApiModelProperty(value = "交易类型 1-市价 2-限价") | 
 |  |  |     private Integer tradeType; | 
 |  |  |  | 
 |  |  |     public BigDecimal getOpeningPrice() { | 
 |  |  |         return openingPrice.setScale(4, BigDecimal.ROUND_DOWN); | 
 |  |  |     @ApiModelProperty(value = "仓位类型 1-逐仓 2-全仓") | 
 |  |  |     private Integer positionType; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "维持保证金") | 
 |  |  |     private BigDecimal holdBond; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "手续费") | 
 |  |  |     private BigDecimal openingFeeAmount; | 
 |  |  |  | 
 |  |  |     public String getOpeningPrice() { | 
 |  |  |         return openingPrice.setScale(4, BigDecimal.ROUND_DOWN).toPlainString(); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     public BigDecimal getBondAmount() { | 
 |  |  |         return bondAmount.setScale(4, BigDecimal.ROUND_DOWN); | 
 |  |  |     public String getBondAmount() { | 
 |  |  |         return bondAmount.setScale(4, BigDecimal.ROUND_DOWN).toPlainString(); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     public BigDecimal getForceClosingPrice() { | 
 |  |  |         return forceClosingPrice.setScale(4, BigDecimal.ROUND_DOWN); | 
 |  |  |     public String getForceClosingPrice() { | 
 |  |  |         return forceClosingPrice.setScale(4, BigDecimal.ROUND_DOWN).toPlainString(); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     public String getProfitOrLoss() { | 
 |  |  |         return profitOrLoss.setScale(4, BigDecimal.ROUND_DOWN).toPlainString(); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     public BigDecimal getCanAddMaxBond() { |