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

📄 abstractbooktag.java.svn-base

📁 在线书库系统 查看图书 编写文章 管理员管理
💻 SVN-BASE
字号:
package StoryManage.Dal;

/**
 * AbstractBookTag entity provides the base persistence definition of the
 * BookTag entity.
 * 
 * @author MyEclipse Persistence Tools
 */

public abstract class AbstractBookTag implements java.io.Serializable {

	// Fields

	private BookTagId id;
	private String title;

	// Constructors

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

	/** full constructor */
	public AbstractBookTag(BookTagId id, String title) {
		this.id = id;
		this.title = title;
	}

	// Property accessors

	public BookTagId getId() {
		return this.id;
	}

	public void setId(BookTagId id) {
		this.id = id;
	}

	public String getTitle() {
		return this.title;
	}

	public void setTitle(String title) {
		this.title = title;
	}

}

⌨️ 快捷键说明

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