TicketBean.java
1.95 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
package com.drp.mobliemall.bean;
import android.os.Parcel;
import android.os.Parcelable;
/**
* Created by Administrator on 2015/1/16.
*/
public class TicketBean implements Parcelable {
private String productName;
private String code;
private double amount;
public double getTotalAmount() {
return totalAmount;
}
public void setTotalAmount(double totalAmount) {
this.totalAmount = totalAmount;
}
private double totalAmount;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
private String id;
public String getProductName() {
return productName;
}
public void setProductName(String productName) {
this.productName = productName;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public double getAmount() {
return amount;
}
public void setAmount(double amount) {
this.amount = amount;
}
public TicketBean() {
}
@Override
public int describeContents() {
return 0;
}
@Override
public void writeToParcel(Parcel dest, int flags) {
dest.writeString(this.productName);
dest.writeString(this.code);
dest.writeDouble(this.amount);
dest.writeString(this.id);
dest.writeDouble(this.totalAmount);
}
private TicketBean(Parcel in) {
this.productName = in.readString();
this.code = in.readString();
this.amount = in.readDouble();
this.id = in.readString();
this.totalAmount=in.readDouble();
}
public static final Creator<TicketBean> CREATOR = new Creator<TicketBean>() {
public TicketBean createFromParcel(Parcel source) {
return new TicketBean(source);
}
public TicketBean[] newArray(int size) {
return new TicketBean[size];
}
};
}