forumnewtopic.java
来自「struts+hibernate BBS mysql数据库 功能基本齐全」· Java 代码 · 共 36 行
JAVA
36 行
package com.elan.forum.model.view;
/**
* Forumnewtopic entity.
*
* @author MyEclipse Persistence Tools
*/
public class Forumnewtopic implements java.io.Serializable {
// Fields
private ForumnewtopicId id;
// Constructors
/** default constructor */
public Forumnewtopic() {
}
/** full constructor */
public Forumnewtopic(ForumnewtopicId id) {
this.id = id;
}
// Property accessors
public ForumnewtopicId getId() {
return this.id;
}
public void setId(ForumnewtopicId id) {
this.id = id;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?