-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSurplusFoodDTO.java
71 lines (46 loc) · 1.18 KB
/
SurplusFoodDTO.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
70
71
//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 SurplusFoodDTO {
private String surplusId;
private String foodId;
private String retailerId;
private PurchaseType purchaseType;
private Date listingDate;
public String getSurplusId() {
return surplusId;
}
public void setSurplusId(String surplusId) {
this.surplusId = surplusId;
}
public String getFoodId() {
return foodId;
}
public void setFoodId(String foodId) {
this.foodId = foodId;
}
public String getRetailerId() {
return retailerId;
}
public void setRetailerId(String retailerId) {
this.retailerId = retailerId;
}
public PurchaseType getPurchaseType() {
return purchaseType;
}
public void setPurchaseType(PurchaseType purchaseType) {
this.purchaseType = purchaseType;
}
public Date getListingDate() {
return listingDate;
}
public void setListingDate(Date listingDate) {
this.listingDate = listingDate;
}
}