📄 forumcountday.java
字号:
package com.elan.forum.model;
import java.util.Date;
/**
* Forumcountday entity.
*
* @author MyEclipse Persistence Tools
*/
public class Forumcountday implements java.io.Serializable {
// Fields
private Integer id;
private Integer count;
private Date theday;
private Date counttime;
// Constructors
/** default constructor */
public Forumcountday() {
}
/** full constructor */
public Forumcountday(Integer count, Date theday, Date counttime) {
this.count = count;
this.theday = theday;
this.counttime = counttime;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getCount() {
return this.count;
}
public void setCount(Integer count) {
this.count = count;
}
public Date getTheday() {
return this.theday;
}
public void setTheday(Date theday) {
this.theday = theday;
}
public Date getCounttime() {
return this.counttime;
}
public void setCounttime(Date counttime) {
this.counttime = counttime;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -