📄 gateway.java
字号:
package com.bcxy.bbs.forum;
/**
* Title:
* Description:
* Copyright:
* Company: www.liyunet.com
*
* @author lishujiang
* @version 1.0
*/
public class GateWay{
int gateWayID;
String gateWayName;
public GateWay(int gateWayID,String gateWayName){
this.gateWayID=gateWayID;
this.gateWayName=gateWayName;
}
public void setGateWayID(int gateWayID){
this.gateWayID=gateWayID;
}
public int getGateWayID(){
return this.gateWayID;
}
public String getGateWayName(){
return this.gateWayName;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -