⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 abstractchapter.java.svn-base

📁 在线书库系统 查看图书 编写文章 管理员管理
💻 SVN-BASE
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -