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

📄 abstractforummessages.java

📁 struts+hibernate BBS mysql数据库 功能基本齐全
💻 JAVA
字号:
package com.elan.forum.model;

import java.util.Date;

/**
 * AbstractForummessages entity provides the base persistence definition of the
 * Forummessages entity.
 * 
 * @author MyEclipse Persistence Tools
 */

public abstract class AbstractForummessages implements java.io.Serializable {

	// Fields

	private Integer id;
	private String fromName;
	private Integer fromId;
	private String toName;
	private Integer toId;
	private String title;
	private String text;
	private Date createTime;
	private Byte isRead;
	private Byte isLj;

	// Constructors

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

	/** minimal constructor */
	public AbstractForummessages(String fromName, Integer fromId, Integer toId) {
		this.fromName = fromName;
		this.fromId = fromId;
		this.toId = toId;
	}

	/** full constructor */
	public AbstractForummessages(String fromName, Integer fromId,
			String toName, Integer toId, String title, String text,
			Date createTime, Byte isRead, Byte isLj) {
		this.fromName = fromName;
		this.fromId = fromId;
		this.toName = toName;
		this.toId = toId;
		this.title = title;
		this.text = text;
		this.createTime = createTime;
		this.isRead = isRead;
		this.isLj = isLj;
	}

	// Property accessors

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

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

	public String getFromName() {
		return this.fromName;
	}

	public void setFromName(String fromName) {
		this.fromName = fromName;
	}

	public Integer getFromId() {
		return this.fromId;
	}

	public void setFromId(Integer fromId) {
		this.fromId = fromId;
	}

	public String getToName() {
		return this.toName;
	}

	public void setToName(String toName) {
		this.toName = toName;
	}

	public Integer getToId() {
		return this.toId;
	}

	public void setToId(Integer toId) {
		this.toId = toId;
	}

	public String getTitle() {
		return this.title;
	}

	public void setTitle(String title) {
		this.title = title;
	}

	public String getText() {
		return this.text;
	}

	public void setText(String text) {
		this.text = text;
	}

	public Date getCreateTime() {
		return this.createTime;
	}

	public void setCreateTime(Date createTime) {
		this.createTime = createTime;
	}

	public Byte getIsRead() {
		return this.isRead;
	}

	public void setIsRead(Byte isRead) {
		this.isRead = isRead;
	}

	public Byte getIsLj() {
		return this.isLj;
	}

	public void setIsLj(Byte isLj) {
		this.isLj = isLj;
	}

}

⌨️ 快捷键说明

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