⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 forumonline.java

📁 struts+hibernate BBS mysql数据库 功能基本齐全
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -