32 lines
915 B
Java
32 lines
915 B
Java
package dev.model;
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
public class Order {
|
|
|
|
private int id;
|
|
private int userId;
|
|
private LocalDateTime createdAt;
|
|
private double totalPrice;
|
|
|
|
public Order() {}
|
|
|
|
public Order(int id, int userId, LocalDateTime createdAt, double totalPrice) {
|
|
this.id = id;
|
|
this.userId = userId;
|
|
this.createdAt = createdAt;
|
|
this.totalPrice = totalPrice;
|
|
}
|
|
|
|
public int getId() { return id; }
|
|
public void setId(int id) { this.id = id; }
|
|
|
|
public int getUserId() { return userId; }
|
|
public void setUserId(int userId) { this.userId = userId; }
|
|
|
|
public LocalDateTime getCreatedAt() { return createdAt; }
|
|
public void setCreatedAt(LocalDateTime createdAt) { this.createdAt = createdAt; }
|
|
|
|
public double getTotalPrice() { return totalPrice; }
|
|
public void setTotalPrice(double totalPrice) { this.totalPrice = totalPrice; }
|
|
} |