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

📄 topicinfo.java

📁 北大青鸟ACCP5.0课程项目 青鸟论坛
💻 JAVA
字号:
/*
Author:青鸟学子
QQ:64578820
Msn:foart@hotmail.com
*/
package com.entity;

import java.util.Date;

public class TopicInfo {
	private Integer tid;// 帖子id
	private Integer tsid;// 所在版块id
	private Integer tuid;// 发帖用户id
	private String ttopic;// 帖子标题
	private String tcontents;// 帖子内容
	private Integer treplycount;// 回复数量
	private Integer tclickcount; // 点击数量
	private Date tpublishtime;// 发帖时间
	private Date tmodifytime; // 修改时间

	public Integer getTid() {
		return tid;
	}

	public void setTid(Integer tid) {
		this.tid = tid;
	}

	public Integer getTsid() {
		return tsid;
	}

	public void setTsid(Integer tsid) {
		this.tsid = tsid;
	}

	public Integer getTuid() {
		return tuid;
	}

	public void setTuid(Integer tuid) {
		this.tuid = tuid;
	}

	public String getTtopic() {
		return ttopic;
	}

	public void setTtopic(String ttopic) {
		this.ttopic = ttopic;
	}

	public String getTcontents() {
		return tcontents;
	}

	public void setTcontents(String tcontents) {
		this.tcontents = tcontents;
	}

	public Integer getTreplycount() {
		return treplycount;
	}

	public void setTreplycount(Integer treplycount) {
		this.treplycount = treplycount;
	}

	public Integer getTclickcount() {
		return tclickcount;
	}

	public void setTclickcount(Integer tclickcount) {
		this.tclickcount = tclickcount;
	}

	public Date getTpublishtime() {
		return tpublishtime;
	}

	public void setTpublishtime(Date tpublishtime) {
		this.tpublishtime = tpublishtime;
	}

	public Date getTmodifytime() {
		return tmodifytime;
	}

	public void setTmodifytime(Date tmodifytime) {
		this.tmodifytime = tmodifytime;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -