abstractchapter.java

来自「在线书库系统 查看图书 编写文章 管理员管理」· Java 代码 · 共 98 行

JAVA
98
字号
package StoryManage.Dal;

/**
 * AbstractChapter entity provides the base persistence definition of the
 * Chapter entity.
 * 
 * @author MyEclipse Persistence Tools
 */

public abstract class AbstractChapter implements java.io.Serializable {

	// Fields

	private Integer chapterId;
	private String chapterTitle;
	private String content;
	private Integer nextChapterId;
	private Integer isVip;
	private Integer storyId;
	private Integer isRelease;

	// Constructors

	/** default constructor */
	public AbstractChapter() {
	}

	/** full constructor */
	public AbstractChapter(String chapterTitle, String content,
			Integer nextChapterId, Integer isVip, Integer storyId,
			Integer isRelease) {
		this.chapterTitle = chapterTitle;
		this.content = content;
		this.nextChapterId = nextChapterId;
		this.isVip = isVip;
		this.storyId = storyId;
		this.isRelease = isRelease;
	}

	// Property accessors

	public Integer getChapterId() {
		return this.chapterId;
	}

	public void setChapterId(Integer chapterId) {
		this.chapterId = chapterId;
	}

	public String getChapterTitle() {
		return this.chapterTitle;
	}

	public void setChapterTitle(String chapterTitle) {
		this.chapterTitle = chapterTitle;
	}

	public String getContent() {
		return this.content;
	}

	public void setContent(String content) {
		this.content = content;
	}

	public Integer getNextChapterId() {
		return this.nextChapterId;
	}

	public void setNextChapterId(Integer nextChapterId) {
		this.nextChapterId = nextChapterId;
	}

	public Integer getIsVip() {
		return this.isVip;
	}

	public void setIsVip(Integer isVip) {
		this.isVip = isVip;
	}

	public Integer getStoryId() {
		return this.storyId;
	}

	public void setStoryId(Integer storyId) {
		this.storyId = storyId;
	}

	public Integer getIsRelease() {
		return this.isRelease;
	}

	public void setIsRelease(Integer isRelease) {
		this.isRelease = isRelease;
	}

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?