HeadBean.java
1.15 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
package com.huaheng.mobilewms.bean;
import android.widget.TextView;
/**
* Created by youjie on 2020/12/16
*/
public class HeadBean {
private String code;
private String type;
private String total;
private String time;
private String created;
public HeadBean(String code, String type, String total, String time, String created) {
this.code = code;
this.type = type;
this.total = total;
this.time = time;
this.created = created;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getTotal() {
return total;
}
public void setTotal(String total) {
this.total = total;
}
public String getTime() {
return time;
}
public void setTime(String time) {
this.time = time;
}
public String getCreated() {
return created;
}
public void setCreated(String created) {
this.created = created;
}
}