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