| | |
| | | import lombok.Data;
|
| | |
|
| | | @Data
|
| | | @ApiModel(value = "SubmitSalesWalletCoinOrderDto", description = "提交买卖订单接收类")
|
| | | @ApiModel(value = "SubmitSalesWalletCoinOrderDto", description = "提交买卖订单参数接收类")
|
| | | public class SubmitSalesWalletCoinOrderDto {
|
| | | |
| | |
|
| | |
|
| | | @NotNull(message = "币种不能为空")
|
| | | @ApiModelProperty(value = "币种", example = "BTC")
|
| | | private String symbol;
|
| | |
|
| | | @NotNull(message = "币种不能为空")
|
| | | @ApiModelProperty(value = "币种", example = "USDT")
|
| | | @NotNull(message = "交易类型不能为空")
|
| | | @ApiModelProperty(value = "买入卖出类型买入:1,卖出:2", example = "1")
|
| | | private Integer type;
|
| | |
|
| | | @NotNull(message = "账户类型不能为空")
|
| | | @ApiModelProperty(value = "账户类型", example = "1")
|
| | | @NotNull(message = "交易方式不能为空")
|
| | | @ApiModelProperty(value = "市价:1,限价:2", example = "1")
|
| | | private Integer tradeType;
|
| | |
|
| | | @NotNull(message = "数量不能为空")
|