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

📄 abstractwebmail.java

📁 在线书库系统 查看图书 编写文章 管理员管理
💻 JAVA
字号:
package StoryManage.Dal;

import java.util.Date;

/**
 * AbstractWebMail entity provides the base persistence definition of the
 * WebMail entity.
 * 
 * @author MyEclipse Persistence Tools
 */

public abstract class AbstractWebMail implements java.io.Serializable {

	// Fields

	private Integer webMailId;
	private Integer sendUserId;
	private Integer receiveUserId;
	private String title;
	private String content;
	private Date sendTime;

	// Constructors

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

	/** full constructor */
	public AbstractWebMail(Integer sendUserId, Integer receiveUserId,
			String title, String content, Date sendTime) {
		this.sendUserId = sendUserId;
		this.receiveUserId = receiveUserId;
		this.title = title;
		this.content = content;
		this.sendTime = sendTime;
	}

	// Property accessors

	public Integer getWebMailId() {
		return this.webMailId;
	}

	public void setWebMailId(Integer webMailId) {
		this.webMailId = webMailId;
	}

	public Integer getSendUserId() {
		return this.sendUserId;
	}

	public void setSendUserId(Integer sendUserId) {
		this.sendUserId = sendUserId;
	}

	public Integer getReceiveUserId() {
		return this.receiveUserId;
	}

	public void setReceiveUserId(Integer receiveUserId) {
		this.receiveUserId = receiveUserId;
	}

	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 Date getSendTime() {
		return this.sendTime;
	}

	public void setSendTime(Date sendTime) {
		this.sendTime = sendTime;
	}

}

⌨️ 快捷键说明

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