| | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.web3j.abi.datatypes.Int; |
| | | import org.web3j.abi.datatypes.primitive.Int; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | |
| | | @ApiModelProperty(value = "合约类型 1-普通 2-跟单") |
| | | private Integer contractType; |
| | | |
| | | @ApiModelProperty(value = "杠杆倍率") |
| | | private Integer leverRatio; |
| | | |
| | | public String getOpeningFeeAmount() { |
| | | return openingFeeAmount == null ? "" : openingFeeAmount.setScale(4, BigDecimal.ROUND_DOWN).toPlainString(); |
| | | } |