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

📄 conferencevo.java

📁 该源码包括了基于J2EE的数据持久层设计,设计中使用了DAO,Service,等模式,并在Struts下进行了测试.
💻 JAVA
字号:
package org.conference.datapersistence.Bo;

import java.io.Serializable;

public class ConferenceVO implements Serializable {

	private static final long serialVersionUID = 1L;
	
	private int  id;

	private String title;

	private String sdateforconference;
	
	private String edateforconference;

	private String datexj;

	private String datesj;

	private String address;

	private String url;

	private String realeasedate;

	private String organizer;

	private String comments;

	private String interests;

	public String getInterests() {
		return interests;
	}

	public void setInterests(String interests) {
		this.interests = interests;
	}

	public String getAddress() {
		return address;
	}

	public void setAddress(String address) {
		this.address = address;
	}

	public String getComments() {
		return comments;
	}

	public void setComments(String comments) {
		this.comments = comments;
	}

	
	public String getEdateforconference() {
		return edateforconference;
	}

	public void setEdateforconference(String edateforconference) {
		this.edateforconference = edateforconference;
	}

	public String getSdateforconference() {
		return sdateforconference;
	}

	public void setSdateforconference(String sdateforconference) {
		this.sdateforconference = sdateforconference;
	}

	public String getOrganizer() {
		return organizer;
	}

	public void setOrganizer(String organizer) {
		this.organizer = organizer;
	}

	public String getRealeasedate() {
		return realeasedate;
	}

	public void setRealeasedate(String realeasedate) {
		this.realeasedate = realeasedate;
	}

	public String getTitle() {
		return title;
	}

	public void setTitle(String title) {
		this.title = title;
	}

	public String getUrl() {
		return url;
	}

	public void setUrl(String url) {
		this.url=url;
	}

	public String toString() {
		return "\n title=" + this.title + " sdateforconference="
				+ this.sdateforconference + " sdateforconference="
				+ this.sdateforconference+" address=" + this.address + " url="
				+ url + " realeasedate=" + this.realeasedate + " organ="
				+ this.organizer + " comments=" + this.comments + " xj="
				+ this.datexj + " sj=" + this.getDatesj() + " interests="
				+ this.interests + " id="+this.id+"\n";
	}

	public String getDatesj() {
		return datesj;
	}

	public void setDatesj(String datesj) {
		this.datesj = datesj;
	}

	public String getDatexj() {
		return datexj;
	}

	public void setDatexj(String datexj) {
		this.datexj = datexj;
	}

	public int getId() {
		return id;
	}

	public void setId(int id) {
		this.id = id;
	}
}

⌨️ 快捷键说明

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