📄 abstractstorytype.java
字号:
package StoryManage.Dal;
/**
* AbstractStoryType entity provides the base persistence definition of the
* StoryType entity.
*
* @author MyEclipse Persistence Tools
*/
public abstract class AbstractStoryType implements java.io.Serializable {
// Fields
private Integer storyTypeId;
private String typeTitle;
private Integer fatherStroyTypeId;
// Constructors
/** default constructor */
public AbstractStoryType() {
}
/** full constructor */
public AbstractStoryType(String typeTitle, Integer fatherStroyTypeId) {
this.typeTitle = typeTitle;
this.fatherStroyTypeId = fatherStroyTypeId;
}
// Property accessors
public Integer getStoryTypeId() {
return this.storyTypeId;
}
public void setStoryTypeId(Integer storyTypeId) {
this.storyTypeId = storyTypeId;
}
public String getTypeTitle() {
return this.typeTitle;
}
public void setTypeTitle(String typeTitle) {
this.typeTitle = typeTitle;
}
public Integer getFatherStroyTypeId() {
return this.fatherStroyTypeId;
}
public void setFatherStroyTypeId(Integer fatherStroyTypeId) {
this.fatherStroyTypeId = fatherStroyTypeId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -