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

📄 fellowship.java

📁 基于j2ee的物流软件
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -