tabmessage.java

来自「JSP源代码 主要实现网页的交互功能 刚学JAVA」· Java 代码 · 共 60 行

JAVA
60
字号
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 + =
减小字号Ctrl + -
显示快捷键?