parent
1cd7be773f
commit
1da1ffb677
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
Loading…
Reference in new issue