You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
962 B
53 lines
962 B
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;
|
|
}
|
|
|
|
|
|
|
|
}
|