food.java
来自「MVC设计+jsp+servlet+sqlserver开发」· Java 代码 · 共 78 行
JAVA
78 行
package com.accp.fan.entity;
public class Food {
public Food() {
// TODO Auto-generated constructor stub
}
private String foodID;
private String foodName;
private String remark;
private Double foodPrice;
private Double totalPrice;
private String description;
private String foodImage;
private int counter;
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getFoodID() {
return foodID;
}
public void setFoodID(String foodID) {
this.foodID = foodID;
}
public String getFoodImage() {
return foodImage;
}
public void setFoodImage(String foodImage) {
this.foodImage = foodImage;
}
public String getFoodName() {
return foodName;
}
public void setFoodName(String foodName) {
this.foodName = foodName;
}
public Double getFoodPrice() {
return foodPrice;
}
public void setFoodPrice(Double foodPrice) {
this.foodPrice = foodPrice;
}
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public int getCounter() {
return counter;
}
public void setCounter(int counter) {
this.counter = counter;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?