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

📄 abstractcommend.java.svn-base

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

/**
 * AbstractCommend entity provides the base persistence definition of the
 * Commend entity.
 * 
 * @author MyEclipse Persistence Tools
 */

public abstract class AbstractCommend implements java.io.Serializable {

	// Fields

	private CommendId id;
	private String commendCause;

	// Constructors

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

	/** full constructor */
	public AbstractCommend(CommendId id, String commendCause) {
		this.id = id;
		this.commendCause = commendCause;
	}

	// Property accessors

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

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

	public String getCommendCause() {
		return this.commendCause;
	}

	public void setCommendCause(String commendCause) {
		this.commendCause = commendCause;
	}

}

⌨️ 快捷键说明

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