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

📄 topicattention.java

📁 基于struts+hibernate的电子商务网站。可运行。数据库mysql
💻 JAVA
字号:
package tarena.entity;

import java.util.Date;

/**
 * Topicattention entity.
 * 
 * @author MyEclipse Persistence Tools
 */

public class Topicattention implements java.io.Serializable {

	// Fields

	private Integer id;
	private Topic topic;
	private String sessionid;
	private Date attentiontime;

	// Constructors

	/** default constructor */
	public Topicattention() {
	}

	/** full constructor */
	public Topicattention(Topic topic, String sessionid, Date attentiontime) {
		this.topic = topic;
		this.sessionid = sessionid;
		this.attentiontime = attentiontime;
	}

	// Property accessors

	public Integer getId() {
		return this.id;
	}

	public void setId(Integer id) {
		this.id = id;
	}

	public Topic getTopic() {
		return this.topic;
	}

	public void setTopic(Topic topic) {
		this.topic = topic;
	}

	public String getSessionid() {
		return this.sessionid;
	}

	public void setSessionid(String sessionid) {
		this.sessionid = sessionid;
	}

	public Date getAttentiontime() {
		return this.attentiontime;
	}

	public void setAttentiontime(Date attentiontime) {
		this.attentiontime = attentiontime;
	}

}

⌨️ 快捷键说明

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