1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
| package com.yami.trading.huobi.websocket.model.generic;
|
| import com.alibaba.fastjson.annotation.JSONField;
| import lombok.*;
|
| import java.math.BigDecimal;
|
| @Data
| @Builder
| @AllArgsConstructor
| @NoArgsConstructor
| @ToString
| public class SymbolV2 {
| private String sc;
| private String dn;
| private String bc;
| private String bcdn;
| private String qc;
| private String qcdn;
| private String state;
| private Boolean whe;
| private Boolean cd;
| private Boolean te;
| private Long toa;
| private String sp;
| private Integer w;
| private BigDecimal ttp;
| private BigDecimal tap;
| private BigDecimal tpp;
| private BigDecimal fp;
| @JSONField(name = "suspend_desc")
| private String suspendDesc;
| @JSONField(name = "transfer_board_desc")
| private String transferBoardDesc;
| private String tags;
| private BigDecimal lr;
| private BigDecimal smlr;
| private String flr;
| private String wr;
| private Integer d;
| private String elr;
| private Person p1;
| private String castate;
| private String ca1oa;
| private String ca2oa;
| }
|
|