gateway.java
来自「一个论坛该有的功能都有」· Java 代码 · 共 31 行
JAVA
31 行
package net.acai.forum;
/**
* Title: 清清网络
* Description:
* Copyright: Copyright (c) 2002
* Company: www.SuperSpace.com
* @author: SuperSpace
* @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 + =
减小字号Ctrl + -
显示快捷键?