ipo
zyy
2025-12-30 d9430c2ed4e2bc3564f4c9057563dd5f5605f28b
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
47
48
49
50
51
52
53
54
55
56
57
58
package com.yami.trading.huobi.websocket.model.generic;
 
import com.alibaba.fastjson.annotation.JSONField;
import lombok.*;
 
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
@ToString
public class ChainV1 {
    private Boolean adt;
    private String ac;
    private Boolean ao;
    private Boolean awt;
    private String chain;
    private String ct;
    private String code;
    private String currency;
    @JSONField(name = "deposit-desc")
    private String depositDesc;
    private Boolean de;
    private String dma;
    @JSONField(name = "deposit-tips-desc")
    private String depositTipsDesc;
    private String dn;
    private Integer fc;
    private String ft;
    @JSONField(name = "default")
    private Integer isDefault;
    @JSONField(name = "replace-chain-info-desc")
    private String replaceChainInfoDesc;
    @JSONField(name = "replace-chain-notification-desc")
    private String replaceChainNotificationDesc;
    @JSONField(name = "replace-chain-popup-desc")
    private String replaceChainPopupDesc;
    private String ca;
    private Integer cct;
    private Integer sc;
    private String sda;
    @JSONField(name = "suspend-deposit-desc")
    private String suspendDepositDesc;
    private String swa;
    @JSONField(name = "suspend-withdraw-desc")
    private String suspendWithdrawDesc;
    private Boolean v;
    @JSONField(name = "withdraw-desc")
    private String withdrawDesc;
    private Boolean we;
    private String wma;
    private Integer wp;
    private String fn;
    @JSONField(name = "withdraw-tips-desc")
    private String withdrawTipsDesc;
    @JSONField(name = "suspend-visible-desc")
    private String suspendVisibleDesc;
 
}