1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.xcong.excoin.modules.okxNewPrice.okxpi.config.Dto;
|
| import io.swagger.annotations.ApiModel;
| import lombok.Data;
|
| /**
| * @author wzy
| * @date 2021-09-16
| **/
| @Data
| @ApiModel(value = "TradeOrderDto", description = "交易订单参数接收类")
| public class TradeOrderDto {
| private String instrumentId;
| private String side;
| private String type;
| private String size;
| private String price;
| }
|
|