📄 fellowship.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 + -