?? 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;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -