-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathOrderDetail.java
More file actions
93 lines (66 loc) · 1.82 KB
/
OrderDetail.java
File metadata and controls
93 lines (66 loc) · 1.82 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
package com.bookshop.modle;
public class OrderDetail {
private String oDId;
private String oId;
private String bId;
private String bName;
private Integer bNums;
private Float bPrice;
private Float bDiscountprice;
private Float bSumprice;
private Float bSumdiscountprice;
public String getoDId() {
return oDId;
}
public void setoDId(String oDId) {
this.oDId = oDId == null ? null : oDId.trim();
}
public String getoId() {
return oId;
}
public void setoId(String oId) {
this.oId = oId == null ? null : oId.trim();
}
public String getbId() {
return bId;
}
public void setbId(String bId) {
this.bId = bId == null ? null : bId.trim();
}
public String getbName() {
return bName;
}
public void setbName(String bName) {
this.bName = bName == null ? null : bName.trim();
}
public Integer getbNums() {
return bNums;
}
public void setbNums(Integer bNums) {
this.bNums = bNums;
}
public Float getbPrice() {
return bPrice;
}
public void setbPrice(Float bPrice) {
this.bPrice = bPrice;
}
public Float getbDiscountprice() {
return bDiscountprice;
}
public void setbDiscountprice(Float bDiscountprice) {
this.bDiscountprice = bDiscountprice;
}
public Float getbSumprice() {
return bSumprice;
}
public void setbSumprice(Float bSumprice) {
this.bSumprice = bSumprice;
}
public Float getbSumdiscountprice() {
return bSumdiscountprice;
}
public void setbSumdiscountprice(Float bSumdiscountprice) {
this.bSumdiscountprice = bSumdiscountprice;
}
}