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

📄 tabmessage.java

📁 JSP源代码 主要实现网页的交互功能 刚学JAVA
💻 JAVA
字号:
package com.model;

public class TabMessage {
	private int id;
	private String note;
	private String sendUname;
	private String receiveUname;
	private String postTime;
	private int readSign;
	public TabMessage(int id, String note, String sendUname,
			String receiveUname, String postTime, int readSign) {
		super();
		this.id = id;
		this.note = note;
		this.sendUname = sendUname;
		this.receiveUname = receiveUname;
		this.postTime = postTime;
		this.readSign = readSign;
	}
	public TabMessage() {
		super();
	}
	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 String getSendUname() {
		return sendUname;
	}
	public void setSendUname(String sendUname) {
		this.sendUname = sendUname;
	}
	public String getReceiveUname() {
		return receiveUname;
	}
	public void setReceiveUname(String receiveUname) {
		this.receiveUname = receiveUname;
	}
	public String getPostTime() {
		return postTime;
	}
	public void setPostTime(String postTime) {
		this.postTime = postTime;
	}
	public int getReadSign() {
		return readSign;
	}
	public void setReadSign(int readSign) {
		this.readSign = readSign;
	}
}

⌨️ 快捷键说明

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