abstractbooktag.java

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

JAVA
47
字号
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 + =
减小字号Ctrl + -
显示快捷键?