LineChartBean.java
2.6 KB
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
99
package com.huaheng.wms.barchart;
import java.util.List;
/**
* Created by xhu_ww on 2018/6/1.
* description:
*/
public class LineChartBean {
private int ERRORNO;
private GRID0Bean GRID0;
public int getERRORNO() {
return ERRORNO;
}
public void setERRORNO(int ERRORNO) {
this.ERRORNO = ERRORNO;
}
public GRID0Bean getGRID0() {
return GRID0;
}
public void setGRID0(GRID0Bean GRID0) {
this.GRID0 = GRID0;
}
public class GRID0Bean {
private int code;
private String message;
private ResultBean result;
public int getCode() {
return code;
}
public void setCode(int code) {
this.code = code;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public ResultBean getResult() {
return result;
}
public void setResult(ResultBean result) {
this.result = result;
}
public class ResultBean {
private List<CompositeIndexBean> compositeIndexGEM;
private List<IncomeBean> clientAccumulativeRate;
private List<CompositeIndexBean> compositeIndexShanghai;
private List<CompositeIndexBean> compositeIndexShenzhen;
public List<CompositeIndexBean> getCompositeIndexGEM() {
return compositeIndexGEM;
}
public void setCompositeIndexGEM(List<CompositeIndexBean> compositeIndexGEM) {
this.compositeIndexGEM = compositeIndexGEM;
}
public List<IncomeBean> getClientAccumulativeRate() {
return clientAccumulativeRate;
}
public void setClientAccumulativeRate(List<IncomeBean> clientAccumulativeRate) {
this.clientAccumulativeRate = clientAccumulativeRate;
}
public List<CompositeIndexBean> getCompositeIndexShanghai() {
return compositeIndexShanghai;
}
public void setCompositeIndexShanghai(List<CompositeIndexBean> compositeIndexShanghai) {
this.compositeIndexShanghai = compositeIndexShanghai;
}
public List<CompositeIndexBean> getCompositeIndexShenzhen() {
return compositeIndexShenzhen;
}
public void setCompositeIndexShenzhen(List<CompositeIndexBean> compositeIndexShenzhen) {
this.compositeIndexShenzhen = compositeIndexShenzhen;
}
}
}
}