-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathData.java
More file actions
72 lines (56 loc) · 1.61 KB
/
Copy pathData.java
File metadata and controls
72 lines (56 loc) · 1.61 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
package com.example.vpoorn001c.ble;
/**
* Created by vpoorn001c on 5/3/15.
*/
public class Data {
private int id ;
private String deviceAddress ;
private String couponName ;
private String couponDesc ;
private String discountPerc;
private String couponExpiry;
public Data(int id, String deviceAddress, String couponName, String couponDesc, String discountPerc, String couponExpiry) {
this.id = id;
this.deviceAddress = deviceAddress;
this.couponName = couponName;
this.couponDesc = couponDesc;
this.discountPerc = discountPerc;
this.couponExpiry = couponExpiry;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getCouponName() {
return couponName;
}
public void setCouponName(String couponName) {
this.couponName = couponName;
}
public String getDeviceAddress() {
return deviceAddress;
}
public void setDeviceAddress(String deviceAddress) {
this.deviceAddress = deviceAddress;
}
public String getCouponExpiry() {
return couponExpiry;
}
public void setCouponExpiry(String couponExpiry) {
this.couponExpiry = couponExpiry;
}
public String getCouponDesc() {
return couponDesc;
}
public void setCouponDesc(String couponDesc) {
this.couponDesc = couponDesc;
}
public String getDiscountPerc() {
return discountPerc;
}
public void setDiscountPerc(String discountPerc) {
this.discountPerc = discountPerc;
}
}