📄 gateway.java
字号:
package net.acai.forum;
/**
* Title: 清清网络
* Description:
* Copyright: Copyright (c) 2002
* Company: www.qingqing.com
* @author: qingqing
* @version 1.0
*/
//import net.acai.database.*;
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 + -