forumcountday.java

来自「struts+hibernate BBS mysql数据库 功能基本齐全」· Java 代码 · 共 67 行

JAVA
67
字号
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 + =
减小字号Ctrl + -
显示快捷键?