gateway.java

来自「BBS论坛设计JSP+MYSQL」· Java 代码 · 共 31 行

JAVA
31
字号
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 + =
减小字号Ctrl + -
显示快捷键?