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.
63 lines
1.2 KiB
63 lines
1.2 KiB
package domain;
|
|
|
|
public class Dishwcy {
|
|
private String dishid;
|
|
private String category;
|
|
private String cname;
|
|
private String image;
|
|
private String descn;
|
|
private double unitcost;
|
|
public Dishwcy(){}
|
|
public Dishwcy(String dishid, String category, String cname, String image,
|
|
String descn, double unitcost) {
|
|
this.dishid = dishid;
|
|
this.category = category;
|
|
this.cname = cname;
|
|
this.image = image;
|
|
this.descn = descn;
|
|
this.unitcost = unitcost;
|
|
}
|
|
public String getDishid() {
|
|
return dishid;
|
|
}
|
|
public void setDishid(String dishid) {
|
|
this.dishid = dishid;
|
|
}
|
|
public String getCategory() {
|
|
return category;
|
|
}
|
|
public void setCategory(String category) {
|
|
this.category = category;
|
|
}
|
|
public String getCname() {
|
|
return cname;
|
|
}
|
|
public void setCname(String cname) {
|
|
this.cname = cname;
|
|
}
|
|
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 getUnitcost() {
|
|
return unitcost;
|
|
}
|
|
public void setUnitcost(double unitcost) {
|
|
this.unitcost = unitcost;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|