zainali5120
2020-05-31 7cfeee9cf8405c06261fd6f9345f2c9bfaee85a2
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
package com.xcong.excoin.utils.api.response;
 
import java.math.BigDecimal;
import java.util.List;
 
/**
 * @Author ISME
 * @Date 2018/1/14
 * @Time 14:39
 */
 
public class Depth {
 
    /**
     * id : 1489464585407
     * ts : 1489464585407
     * bids : [[7964,0.0678],[7963,0.9162]]
     * asks : [[7979,0.0736],[8020,13.6584]]
     */
 
    private String id;
    private String ts;
    private List<List<BigDecimal>> bids;
    private List<List<BigDecimal>> asks;
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getTs() {
        return ts;
    }
 
    public void setTs(String ts) {
        this.ts = ts;
    }
 
    public List<List<BigDecimal>> getBids() {
        return bids;
    }
 
    public void setBids(List<List<BigDecimal>> bids) {
        this.bids = bids;
    }
 
    public List<List<BigDecimal>> getAsks() {
        return asks;
    }
 
    public void setAsks(List<List<BigDecimal>> asks) {
        this.asks = asks;
    }
}