jsp+Struts1.2+Hibernate3.1+mysql

源代码在线查看: message.java

软件大小: 2133 K
上传用户: makai1630
关键词: Hibernate Struts mysql jsp
下载地址: 免注册下载 普通下载 VIP

相关代码

				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;
					}
				}
							

相关资源