From 6587485204122f0d369d1cdaa8cdb952d3e20752 Mon Sep 17 00:00:00 2001 From: nxist2202005014 <1463859337@qq.com> Date: Wed, 26 Jun 2024 09:53:45 +0800 Subject: [PATCH] ADD file via upload --- OrderDetail.java | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 OrderDetail.java diff --git a/OrderDetail.java b/OrderDetail.java new file mode 100644 index 0000000..5758f56 --- /dev/null +++ b/OrderDetail.java @@ -0,0 +1,35 @@ +package flowershop.model; + +public class OrderDetail { + + private long orderid; + private String productid; + private int quantity; + private double price; + + public long getOrderid() { + return orderid; + } + public void setOrderid(long orderid) { + this.orderid = orderid; + } + public String getProductid() { + return productid; + } + public void setProductid(String productid) { + this.productid = productid; + } + public int getQuantity() { + return quantity; + } + public void setQuantity(int quantity) { + this.quantity = quantity; + } + public double getPrice() { + return price; + } + public void setPrice(double price) { + this.price = price; + } + +}