abstractstorytype.java
来自「在线书库系统 查看图书 编写文章 管理员管理」· Java 代码 · 共 56 行
JAVA
56 行
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 + =
减小字号Ctrl + -
显示快捷键?