zj
2025-06-30 414555cfbb72c02ebc07ca164a7ff0d0f592de13
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
package project.data.websocket.model.market;
 
import java.util.List;
 
public class MarketDepth {
 
    private long version;
 
    private Long ts;
 
    private List<PriceLevel> bids;
 
    private List<PriceLevel> asks;
 
    public long getVersion() {
        return version;
    }
 
    public void setVersion(long version) {
        this.version = version;
    }
 
    public Long getTs() {
        return ts;
    }
 
    public void setTs(Long ts) {
        this.ts = ts;
    }
 
    public List<PriceLevel> getBids() {
        return bids;
    }
 
    public void setBids(List<PriceLevel> bids) {
        this.bids = bids;
    }
 
    public List<PriceLevel> getAsks() {
        return asks;
    }
 
    public void setAsks(List<PriceLevel> asks) {
        this.asks = asks;
    }
 
}