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