📄 abstractfoodstyle.java
字号:
package com.web.model;
import java.util.HashSet;
import java.util.Set;
/**
* AbstractFoodStyle entity provides the base persistence definition of the
* FoodStyle entity.
*
* @author MyEclipse Persistence Tools
*/
public abstract class AbstractFoodStyle implements java.io.Serializable {
// Fields
private String fsId;
private String fsName;
// Constructors
/** default constructor */
public AbstractFoodStyle() {
}
/** minimal constructor */
public AbstractFoodStyle(String fsId, String fsName) {
this.fsId = fsId;
this.fsName = fsName;
}
/** full constructor */
// Property accessors
public String getFsId() {
return this.fsId;
}
public void setFsId(String fsId) {
this.fsId = fsId;
}
public String getFsName() {
return this.fsName;
}
public void setFsName(String fsName) {
this.fsName = fsName;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -