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

📄 topic.java

📁 jaguey,网上的一个朋友给我的
💻 JAVA
字号:
package net.javapassion.jaguey.domain;

import java.util.Date;

//版本: JagueyBBS 1.1
//功能: 论坛主题帖子数据库映射Bean
//作者: 赵程佳
//时间: 2006-02-05 20:13:40

public class Topic {
	private String topicId;
	private Board board;
	private String title;
	private String content;
	private String faceIcon;
	private Date appearTime;
	private Date lastTime;
	private String userName;
	private String lastUser;
	private Integer goodFlag;
	private String topicTypeId;
	private Integer topFlag;
	private Integer lockFlag;
	private Integer orderId;
	
	public Topic(String topicId, Board board, String title, String content, 
			String faceIcon, Date appearTime, Date lastTime, String userName, 
			String lastUser, Integer goodFlag, String topicTypeId, Integer topFlag, 
			Integer lockFlag, Integer orderId) {
		this.topicId = topicId;
		this.board = board;
		this.title = title;
		this.content = content;
		this.faceIcon = faceIcon;
		this.appearTime = appearTime;
		this.lastTime = lastTime;
		this.userName = userName;
		this.lastUser = lastUser;
		this.goodFlag = goodFlag;
		this.topicTypeId = topicTypeId;
		this.topFlag = topFlag;
		this.lockFlag = lockFlag;
		this.orderId = orderId;
	}
	
	public Topic() {
	}

	public String getTopicId() {
		return this.topicId;
	}
	
	public void setTopicId(String topicId) {
		this.topicId = topicId;
	}
	
	public Board getBoard() {
		return this.board;
	}
	
	public void setBoard(Board board) {
		this.board = board;
	}
	
	public String getTitle() {
		return this.title;
	}
	
	public void setTitle(String title) {
		this.title = title;
	}
	
	public String getContent() {
		return this.content;
	}
	
	public void setContent(String content) {
		this.content = content;
	}
	
	public String getFaceIcon() {
		return this.faceIcon;
	}
	
	public void setFaceIcon(String faceIcon) {
		this.faceIcon = faceIcon;
	}
	
	public Date getAppearTime() {
		return this.appearTime;
	}
	
	public void setAppearTime(Date appearTime) {
		this.appearTime = appearTime;
	}
	
	public Date getLastTime() {
		return this.lastTime;
	}
	
	public void setLastTime(Date lastTime) {
		this.lastTime = lastTime;
	}
	
	public String getUserName() {
		return this.userName;
	}
	
	public void setUserName(String userName) {
		this.userName = userName;
	}
	
	public String getLastUser() {
		return this.lastUser;
	}
	
	public void setLastUser(String lastUser) {
		this.lastUser = lastUser;
	}
	
	public Integer getGoodFlag() {
		return this.goodFlag;
	}
	
	public void setGoodFlag(Integer goodFlag) {
		this.goodFlag = goodFlag;
	}
	
	public String getTopicTypeId() {
		return this.topicTypeId;
	}
	
	public void setTopicTypeId(String topicTypeId) {
		this.topicTypeId = topicTypeId;
	}
	
	public Integer getTopFlag() {
		return this.topFlag;
	}
	
	public void setTopFlag(Integer topFlag) {
		this.topFlag = topFlag;
	}
	
	public Integer getLockFlag() {
		return this.lockFlag;
	}
	
	public void setLockFlag(Integer lockFlag) {
		this.lockFlag = lockFlag;
	}
	
	public Integer getOrderId() {
		return this.orderId;
	}
	
	public void setOrderId(Integer orderId) {
		this.orderId = orderId;
	}
}

⌨️ 快捷键说明

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