-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathOrders.java
More file actions
95 lines (67 loc) · 1.83 KB
/
Orders.java
File metadata and controls
95 lines (67 loc) · 1.83 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
package com.bookshop.modle;
import java.util.Date;
public class Orders {
private String oId;
private Integer oNum;
private Float oPrice;
private Date oTime;
private String uAccount;
private String uAddress;
private String oPhone;
private String uReceiver;
private Float oCheaper;
public String getoId() {
return oId;
}
public void setoId(String oId) {
this.oId = oId == null ? null : oId.trim();
}
public Integer getoNum() {
return oNum;
}
public void setoNum(Integer oNum) {
this.oNum = oNum;
}
public Float getoPrice() {
return oPrice;
}
public void setoPrice(Float oPrice) {
this.oPrice = oPrice;
}
public Date getoTime() {
return oTime;
}
public void setoTime(Date oTime) {
this.oTime = oTime;
}
public String getuAccount() {
return uAccount;
}
public void setuAccount(String uAccount) {
this.uAccount = uAccount == null ? null : uAccount.trim();
}
public String getuAddress() {
return uAddress;
}
public void setuAddress(String uAddress) {
this.uAddress = uAddress == null ? null : uAddress.trim();
}
public String getoPhone() {
return oPhone;
}
public void setoPhone(String oPhone) {
this.oPhone = oPhone == null ? null : oPhone.trim();
}
public String getuReceiver() {
return uReceiver;
}
public void setuReceiver(String uReceiver) {
this.uReceiver = uReceiver == null ? null : uReceiver.trim();
}
public Float getoCheaper() {
return oCheaper;
}
public void setoCheaper(Float oCheaper) {
this.oCheaper = oCheaper;
}
}