📄 abstractcommend.java.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 + -