📄 gbs_countrydetail_stbean.java
字号:
/*
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -