xiaoyong931011
2020-06-02 987b08f018be10550d6f48242633bd9a1d85a865
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
59
60
61
62
63
64
65
66
67
68
69
70
package com.xcong.excoin.utils.api.response;
 
public class TradeResponse {
 
 
    /**
     * status : ok
     * ch : market.btcusdt.trade.detail
     * ts : 1489473346905
     * tick : {"id":600848670,"ts":1489464451000,"data":[{"id":600848670,"price":7962.62,"amount":0.0122,"direction":"buy","ts":1489464451000}]}
     */
 
    private String status;
    private String ch;
    private long ts;
    public String errCode;
    public String errMsg;
    @SuppressWarnings("rawtypes")
    private Trade tick;
 
    public String getStatus() {
        return status;
    }
 
    public void setStatus(String status) {
        this.status = status;
    }
 
    public String getCh() {
        return ch;
    }
 
    public void setCh(String ch) {
        this.ch = ch;
    }
 
    public long getTs() {
        return ts;
    }
 
    public void setTs(long ts) {
        this.ts = ts;
    }
 
    public String getErrCode() {
        return errCode;
    }
 
    public void setErrCode(String errCode) {
        this.errCode = errCode;
    }
 
    public String getErrMsg() {
        return errMsg;
    }
 
    public void setErrMsg(String errMsg) {
        this.errMsg = errMsg;
    }
 
    @SuppressWarnings("rawtypes")
    public Trade getTick() {
        return tick;
    }
 
    @SuppressWarnings("rawtypes")
    public void setTick(Trade tick) {
        this.tick = tick;
    }
}