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
| package com.yami.trading.huobi.websocket.model.subuser;
|
| import java.math.BigDecimal;
|
| import lombok.*;
|
| @Data
| @Builder
| @AllArgsConstructor
| @NoArgsConstructor
| @ToString
| public class SubUserDeposit {
|
| private Long id;
|
| private String currency;
|
| private String txHash;
|
| private String chain;
|
| private BigDecimal amount;
|
| private String address;
|
| private String addressTag;
|
| private String state;
|
| private Long createTime;
|
| private Long updateTime;
|
| }
|
|