message.java

来自「jsp+Struts1.2+Hibernate3.1+mysql」· Java 代码 · 共 67 行

JAVA
67
字号
package bbs.struts.vo;

public class Message {
	private String id ;
	private String title ;
	private String content ;
	private String leaver ;
	private String time;
	private boolean own; 
	
	
	
	public Message(String id, String title, String content, String leaver,
			String time, boolean own) {
		super();
		this.id = id;
		this.title = title;
		this.content = content;
		this.leaver = leaver;
		this.time = time;
		this.own = own;
	}
	public boolean isOwn() {
		return own;
	}
	public void setOwn(boolean own) {
		this.own = own;
	}
	public Message(String id, String title,String leaver, String content,  String time) {
		this.id = id;
		this.title = title;
		this.content = content;
		this.leaver = leaver;
		this.time = time;
	}
	public String getContent() {
		return content;
	}
	public void setContent(String content) {
		this.content = content;
	}
	public String getLeaver() {
		return leaver;
	}
	public void setLeaver(String leaver) {
		this.leaver = leaver;
	}
	public String getTime() {
		return time;
	}
	public void setTime(String time) {
		this.time = time;
	}
	public String getTitle() {
		return title;
	}
	public void setTitle(String title) {
		this.title = title;
	}
	public String getId() {
		return id;
	}
	public void setId(String id) {
		this.id = id;
	}
}

⌨️ 快捷键说明

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