📄 foodbean.java
字号:
package com.restrant.entity;
import java.io.Serializable;
public class FoodBean implements Serializable {
private static final long serialVersionUID = 1L;
private int foodId=0;
private String foodName=null;
private String remark=null;
private float foodPrice=0;
private String description=null;
private String foodImage=null;
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public int getFoodId() {
return foodId;
}
public void setFoodId(int 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 float getFoodPrice() {
return foodPrice;
}
public void setFoodPrice(float foodPrice) {
this.foodPrice = foodPrice;
}
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -