abstractcommend.java
来自「在线书库系统 查看图书 编写文章 管理员管理」· Java 代码 · 共 47 行
JAVA
47 行
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 + =
减小字号Ctrl + -
显示快捷键?