-
Notifications
You must be signed in to change notification settings - Fork 260
Expand file tree
/
Copy pathorders.java
More file actions
80 lines (47 loc) · 1.01 KB
/
orders.java
File metadata and controls
80 lines (47 loc) · 1.01 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
package com.entity;
public class orders {
private int Order_Id;
private String Customer_Name;
private String Customer_City;
private String Date;
private int Total_Price;
private String Status;
public orders() {
}
public int getOrder_Id() {
return Order_Id;
}
public void setOrder_Id(int order_Id) {
Order_Id = order_Id;
}
public String getCustomer_Name() {
return Customer_Name;
}
public void setCustomer_Name(String customer_Name) {
Customer_Name = customer_Name;
}
public String getCustomer_City() {
return Customer_City;
}
public void setCustomer_City(String customer_City) {
Customer_City = customer_City;
}
public String getDate() {
return Date;
}
public void setDate(String date) {
Date = date;
}
public int getTotal_Price() {
return Total_Price;
}
public void setTotal_Price(int total_Price) {
Total_Price = total_Price;
}
public String getStatus() {
return Status;
}
public void setStatus(String status) {
Status = status;
}
}