From 1da1ffb67747ca3fbea24040fa24b595e1a66bcc Mon Sep 17 00:00:00 2001 From: nxist2202005014 <1463859337@qq.com> Date: Wed, 26 Jun 2024 09:53:34 +0800 Subject: [PATCH] ADD file via upload --- Flower.java | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 Flower.java diff --git a/Flower.java b/Flower.java new file mode 100644 index 0000000..c3ef684 --- /dev/null +++ b/Flower.java @@ -0,0 +1,52 @@ +package flowershop.model; + +public class Flower { + + private String productid; + private String name; + private String category; + private String image; + private String descn; + private double price; + + + public String getProductid() { + return productid; + } + public void setProductid(String productid) { + this.productid = productid; + } + public String getName() { + return name; + } + public void setName(String name) { + this.name = name; + } + public String getImage() { + return image; + } + public void setImage(String image) { + this.image = image; + } + public String getDescn() { + return descn; + } + public void setDescn(String descn) { + this.descn = descn; + } + public double getPrice() { + return price; + } + public void setPrice(double price) { + this.price = price; + } + public String getCategory() { + return category; + } + public void setCategory(String category) { + this.category = category; + } + + + +}