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

📄 message.java

📁 论坛短消息,用户登录、登出 查看个人的短消息 发送短消息 回复短消息 删除短消息
💻 JAVA
字号:
package com.hlfly.entity;

import java.util.Date;

public class Message {
	
	private int id;
	private String note;
	private String sendUname;
	private String receiveUname;
	private Date postTime;
	private int readSign;
	
	public Message() {
		super();
		// TODO 自动生成构造函数存根
	}
	public Message(int id, String note, String sendUname, String receiveUname, Date postTime, int readSign) {
		super();
		this.id = id;
		this.note = note;
		this.sendUname = sendUname;
		this.receiveUname = receiveUname;
		this.postTime = postTime;
		this.readSign = readSign;
	}
	
	public int getId() {
		return id;
	}
	public void setId(int id) {
		this.id = id;
	}
	public String getNote() {
		return note;
	}
	public void setNote(String note) {
		this.note = note;
	}
	public Date getPostTime() {
		return postTime;
	}
	public void setPostTime(Date postTime) {
		this.postTime = postTime;
	}
	public int getReadSign() {
		return readSign;
	}
	public void setReadSign(int readSign) {
		this.readSign = readSign;
	}
	public String getReceiveUname() {
		return receiveUname;
	}
	public void setReceiveUname(String receiveUname) {
		this.receiveUname = receiveUname;
	}
	public String getSendUname() {
		return sendUname;
	}
	public void setSendUname(String sendUname) {
		this.sendUname = sendUname;
	}

}

⌨️ 快捷键说明

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