-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTransactionDTO.java
69 lines (46 loc) · 1.19 KB
/
TransactionDTO.java
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
//Class: CST8288//
//Section: 033//
//Professor: Islam Gomaa//
//Assignment: Final Project//
//Date: 23/7/2024//
//Authors: Jake Elliott, Navjot Kaur, Heeseok Yang, Scott Valair//
package database;
import java.sql.Date;
import enums.PurchaseType;
public class TransactionDTO {
private String transactionId;
private String foodId;
private String userId;
private PurchaseType purchaseType;
private Date purchaseDate;
public String getTransactionId() {
return transactionId;
}
public void setTransactionId(String transactionId) {
this.transactionId = transactionId;
}
public String getFoodId() {
return foodId;
}
public void setFoodId(String foodId) {
this.foodId = foodId;
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public PurchaseType getPurchaseType() {
return purchaseType;
}
public void setPurchaseType(PurchaseType purchaseType) {
this.purchaseType = purchaseType;
}
public Date getPurchaseDate() {
return purchaseDate;
}
public void setPurchaseDate(Date purchaseDate) {
this.purchaseDate = purchaseDate;
}
}