📄 abstractfoodinfo.java
字号:
package com.eatery.po;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
/**
* AbstractFoodInfo generated by MyEclipse - Hibernate Tools
*/
public abstract class AbstractFoodInfo implements java.io.Serializable {
// Fields
private Integer FId;
private EnterpriseInfo enterpriseInfo;
private FoodSmallType foodSmallType;
private String FName;
private Double FPrice;
private String FFrom;
private String FImage;
private Integer FState;
private Date FDate;
private Set orderInfos = new HashSet(0);
// Constructors
/** default constructor */
public AbstractFoodInfo() {
}
/** minimal constructor */
public AbstractFoodInfo(Integer FId, String FName, Double FPrice) {
this.FId = FId;
this.FName = FName;
this.FPrice = FPrice;
}
/** full constructor */
public AbstractFoodInfo(Integer FId, EnterpriseInfo enterpriseInfo, FoodSmallType foodSmallType, String FName, Double FPrice, String FFrom, String FImage, Integer FState,Date FDate,Set orderInfos) {
this.FId = FId;
this.enterpriseInfo = enterpriseInfo;
this.foodSmallType = foodSmallType;
this.FName = FName;
this.FPrice = FPrice;
this.FFrom = FFrom;
this.FImage = FImage;
this.FState=FState;
this.FDate=FDate;
this.orderInfos = orderInfos;
}
// Property accessors
public Integer getFId() {
return this.FId;
}
public void setFId(Integer FId) {
this.FId = FId;
}
public EnterpriseInfo getEnterpriseInfo() {
return this.enterpriseInfo;
}
public void setEnterpriseInfo(EnterpriseInfo enterpriseInfo) {
this.enterpriseInfo = enterpriseInfo;
}
public FoodSmallType getFoodSmallType() {
return this.foodSmallType;
}
public void setFoodSmallType(FoodSmallType foodSmallType) {
this.foodSmallType = foodSmallType;
}
public String getFName() {
return this.FName;
}
public void setFName(String FName) {
this.FName = FName;
}
public Double getFPrice() {
return this.FPrice;
}
public void setFPrice(Double FPrice) {
this.FPrice = FPrice;
}
public String getFFrom() {
return this.FFrom;
}
public void setFFrom(String FFrom) {
this.FFrom = FFrom;
}
public String getFImage() {
return this.FImage;
}
public void setFImage(String FImage) {
this.FImage = FImage;
}
public Set getOrderInfos() {
return this.orderInfos;
}
public void setOrderInfos(Set orderInfos) {
this.orderInfos = orderInfos;
}
public Integer getFState() {
return FState;
}
public void setFState(Integer FState) {
this.FState = FState;
}
public Date getFDate() {
return FDate;
}
public void setFDate(Date date) {
FDate = date;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -