GateWay.java
上传用户:toby834
上传日期:2013-10-21
资源大小:2613k
文件大小:1k
- 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;
- }
- }
-