fellowship.java

来自「基于j2ee的物流软件」· Java 代码 · 共 46 行

JAVA
46
字号
package com.wuliu.entity;

/**
 * @author 刘海鹏
 * @version 友情连接表
 */
public class Fellowship {
	private String fellowshipId = null; //编号
	private String websiteName = null; //网站名
	private String websiteAddress = null; //网站地址
	
	public Fellowship(){
		
	}
	
	public Fellowship(String fellowshipId, String websiteName, String websiteAddress){
		this.fellowshipId = fellowshipId;
		this.websiteName = websiteName;
		this.websiteAddress = websiteAddress;
	}

	public String getFellowshipId() {
		return fellowshipId;
	}
	
	public void setFellowshipId(String fellowshipId) {
		this.fellowshipId = fellowshipId;
	}
	
	public String getWebsiteName() {
		return websiteName;
	}
	
	public void setWebsiteName(String websiteName) {
		this.websiteName = websiteName;
	}
	
	public String getWebsiteAddress() {
		return websiteAddress;
	}
	
	public void setWebsiteAddress(String websiteAddress) {
		this.websiteAddress = websiteAddress;
	}
}

⌨️ 快捷键说明

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