⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 abstractfoodinfo.java

📁 SSH 开发网上订餐系统。由于SSH相关包太大不方便上传。请自行导入。
💻 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 + -