HeadBean.java
1.59 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
package com.huaheng.mmsrf.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;
   private  String status;
    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 HeadBean(String code, String type, String total, String time, String created, String status) {
        this.code = code;
        this.type = type;
        this.total = total;
        this.time = time;
        this.created = created;
        this.status = status;
    }
    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;
    }
    public String getStatus() {
        return status;
    }
    public void setStatus(String status) {
        this.status = status;
    }
}