CardInfo.java
2.48 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
package com.hjx.personalcenter.model;
/**
* Created by h on 2017/8/18.
*/
public class CardInfo {
/**
* customerName : FuQiang
* createTime : 2017-08-01 13:21:00
* mobilePhone : 13162530008
* buyTime : 2017-08-01 12:23:50
* productModel : GT-N7100
* buyAddress : HaojixingZhengZhou
* customerAddress : HeNamZhengSheng
* alterSaleCall : 4022210201
* macAddress : 00:22:F4:93:7A:B
* deviceNumber : A909A90997011012
*/
private String customerName;
private String createTime;
private String mobilePhone;
private String buyTime;
private String productModel;
private String buyAddress;
private String customerAddress;
private String alterSaleCall;
private String macAddress;
private String deviceNumber;
public String getCustomerName() {
return customerName;
}
public void setCustomerName(String customerName) {
this.customerName = customerName;
}
public String getCreateTime() {
return createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getMobilePhone() {
return mobilePhone;
}
public void setMobilePhone(String mobilePhone) {
this.mobilePhone = mobilePhone;
}
public String getBuyTime() {
return buyTime;
}
public void setBuyTime(String buyTime) {
this.buyTime = buyTime;
}
public String getProductModel() {
return productModel;
}
public void setProductModel(String productModel) {
this.productModel = productModel;
}
public String getBuyAddress() {
return buyAddress;
}
public void setBuyAddress(String buyAddress) {
this.buyAddress = buyAddress;
}
public String getCustomerAddress() {
return customerAddress;
}
public void setCustomerAddress(String customerAddress) {
this.customerAddress = customerAddress;
}
public String getAlterSaleCall() {
return alterSaleCall;
}
public void setAlterSaleCall(String alterSaleCall) {
this.alterSaleCall = alterSaleCall;
}
public String getMacAddress() {
return macAddress;
}
public void setMacAddress(String macAddress) {
this.macAddress = macAddress;
}
public String getDeviceNumber() {
return deviceNumber;
}
public void setDeviceNumber(String deviceNumber) {
this.deviceNumber = deviceNumber;
}
}