?? abstractfoodinfo.java
字號:
package com.web.model;
import java.util.HashSet;
import java.util.Set;
/**
* AbstractFoodInfo entity provides the base persistence definition of the
* FoodInfo entity.
*
* @author MyEclipse Persistence Tools
*/
public abstract class AbstractFoodInfo implements java.io.Serializable {
// Fields
private String FId;
private FoodStyle foodStyle;
private String FName;
private Float FPrice;
private String FSmallimage;
private String FLargeimage;
private Integer FState;
private Integer FTotal;
private String FMemo;
// Constructors
/** default constructor */
public AbstractFoodInfo() {
}
/** minimal constructor */
public AbstractFoodInfo(String FId, FoodStyle foodStyle, String FName,
Float FPrice, Integer FState) {
this.FId = FId;
this.foodStyle = foodStyle;
this.FName = FName;
this.FPrice = FPrice;
this.FState = FState;
}
/** full constructor */
// Property accessors
public String getFId() {
return this.FId;
}
public void setFId(String FId) {
this.FId = FId;
}
public FoodStyle getFoodStyle() {
return this.foodStyle;
}
public void setFoodStyle(FoodStyle foodStyle) {
this.foodStyle = foodStyle;
}
public String getFName() {
return this.FName;
}
public void setFName(String FName) {
this.FName = FName;
}
public Float getFPrice() {
return this.FPrice;
}
public void setFPrice(Float FPrice) {
this.FPrice = FPrice;
}
public String getFSmallimage() {
return this.FSmallimage;
}
public void setFSmallimage(String FSmallimage) {
this.FSmallimage = FSmallimage;
}
public String getFLargeimage() {
return this.FLargeimage;
}
public void setFLargeimage(String FLargeimage) {
this.FLargeimage = FLargeimage;
}
public Integer getFState() {
return this.FState;
}
public void setFState(Integer FState) {
this.FState = FState;
}
public Integer getFTotal() {
return this.FTotal;
}
public void setFTotal(Integer FTotal) {
this.FTotal = FTotal;
}
public String getFMemo() {
return this.FMemo;
}
public void setFMemo(String FMemo) {
this.FMemo = FMemo;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -