gbs_countrydetail_stbean.java

来自「对日软件外包 为东芝做的一个全球商业管理系统」· Java 代码 · 共 61 行

JAVA
61
字号
/*
 * Created on 2004/08/09
 * 
 */
package DataBean;

import java.io.Serializable;
/**
 * <p>Title: MIF </p>
 * <p>Description: process page action<br>
 * </p>
 * <p> Copyright (c) 2004</p>
 * @author XJL
 * @version  1.0
 */

public class GBS_CountryDetail_stBean extends GBS_TreeNoteBaseBean implements Serializable {
	
	// --------------------------------------------------------- Instance Variables
	/** countryCode property */
	private String countryCode = "";
	/** countryName property */
	private String countryName = "";
	
	
	// --------------------------------------------------------- Methods

	/** 
	 * Returns the countryCode.
	 * @return String
	 */
	public String getCountryCode(){
		return countryCode;
	}
	
	/** 
	 * Set the countryCode.
	 * @param countryCode The countryCode to set
	 */	
	public void setCountryCode( String countryCode ){
		this.countryCode = countryCode;
	}

	/** 
	 * Returns the countryName.
	 * @return String
	 */	
	public String getCountryName(){
		return countryName;
	}
	
	/** 
	 * Set the countryName.
	 * @param countryName The countryName to set
	 */		
	public void setCountryName( String countryName ){
		this.countryName = countryName;
	}
	
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?