xiaoyong931011
2020-07-10 272711879d12c496cc44891069a75a338f76c5e0
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
package com.xcong.excoin.utils.api.response;
 
public class Details {
 
    /**
     * amount : 4316.4346
     * open : 8090.54
     * close : 7962.62
     * high : 8119
     * ts : 1489464451000
     * id : 1489464451
     * count : 9595
     * low : 7875
     * vol : 3.449727690576E7
     */
 
    private double amount;
    private double open;
    private double close;
    private int high;
    private long ts;
    private long id;
    private int count;
    private int low;
    private double vol;
 
    public double getAmount() {
        return amount;
    }
 
    public void setAmount(double amount) {
        this.amount = amount;
    }
 
    public double getOpen() {
        return open;
    }
 
    public void setOpen(double open) {
        this.open = open;
    }
 
    public double getClose() {
        return close;
    }
 
    public void setClose(double close) {
        this.close = close;
    }
 
    public int getHigh() {
        return high;
    }
 
    public void setHigh(int high) {
        this.high = high;
    }
 
    public long getTs() {
        return ts;
    }
 
    public void setTs(long ts) {
        this.ts = ts;
    }
 
    public long getId() {
        return id;
    }
 
    public void setId(long id) {
        this.id = id;
    }
 
    public int getCount() {
        return count;
    }
 
    public void setCount(int count) {
        this.count = count;
    }
 
    public int getLow() {
        return low;
    }
 
    public void setLow(int low) {
        this.low = low;
    }
 
    public double getVol() {
        return vol;
    }
 
    public void setVol(double vol) {
        this.vol = vol;
    }
}