GateWay.java
上传用户:toby834
上传日期:2013-10-21
资源大小:2613k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. package net.acai.forum;
  2. /**
  3.  * Title:        清清网络
  4.  * Description:
  5.  * Copyright:    Copyright (c) 2002
  6.  * Company:      www.SuperSpace.com
  7.  * @author:       SuperSpace
  8.  * @version 1.0
  9.  */
  10. //import net.acai.database.*;
  11. public class GateWay{
  12. int gateWayID;
  13. String gateWayName;
  14. public GateWay(int gateWayID,String gateWayName){
  15. this.gateWayID=gateWayID;
  16. this.gateWayName=gateWayName;
  17. }
  18. public void setGateWayID(int gateWayID){
  19. this.gateWayID=gateWayID;
  20. }
  21. public int getGateWayID(){
  22. return this.gateWayID;
  23. }
  24. public String getGateWayName(){
  25. return this.gateWayName;
  26. }
  27. }