📄 ems0y0000.java.svn-base
字号:
package jm.entity.master;
import jm.framework.gui.JMEntity;
/**
* <p>国家</p>
*
* <p>Copyright: Copyright (c) 2004-2006</p>
*
* <p>Company: 1SHome</p>
*
* <p>@author Spook</p>
*
* @since 1.3
* @see JDK 1.5.0.6
*/
public class EMS0Y0000 implements JMEntity {
/** 国家编号*/
private String countryID = null;
/** 国家名称*/
private String countryName = null;
/** 电话区号*/
private String phoneBoroughID = null;
/** 洲编号*/
private String continentID = null;
/** 洲名称*/
private String continentName = null;
/** 奇偶行区分 */
private String rowsKb = null;
/**
* clear
*/
public void clear() {
/* 国家编号*/
this.countryID = null;
/* 国家名称*/
this.countryName = null;
/* 电话区号*/
this.phoneBoroughID = null;
/* 洲编号*/
this.continentID = null;
/* 洲名称*/
this.continentName = null;
}
/**
* 获得存储器内容
*
* @return 存储器内容
*/
public String getItems() {
return "CountryID;CountryName;PhoneBoroughID;ContinentID;ContinentName";
}
/**
* toString
*/
public String toString() {
return "MS0Y0000:"
/* 国家编号*/
+ " countryID =" + this.countryID + ", "
/* 国家名称*/
+ " countryName =" + this.countryName + ", "
/* 电话区号*/
+ " phoneBoroughID =" + this.phoneBoroughID + ", "
/* 洲编号*/
+ " continentID =" + this.continentID + ", "
/* 洲名称*/
+ " continentName =" + this.continentName + ", "
;
}
/**
* 获取国家编号
*
* @return CountryID 国家编号
*/
public String getCountryID() {
return this.countryID;
}
/**
* 获取国家名称
*
* @return CountryName 国家名称
*/
public String getCountryName() {
return this.countryName;
}
/**
* 获取电话区号
*
* @return PhoneBoroughID 电话区号
*/
public String getPhoneBoroughID() {
return this.phoneBoroughID;
}
/**
* 获取洲编号
*
* @return ContinentID 洲编号
*/
public String getContinentID() {
return this.continentID;
}
/**
* 获取洲名称
*
* @return ContinentName 洲名称
*/
public String getContinentName() {
return this.continentName;
}
/**
* 获得奇偶行区分
*
* @return 奇偶行区分
*/
public String getRowsKb() {
return rowsKb;
}
/**
* 设置国家编号
*
* @param CountryID 国家编号
*/
public void setCountryID(String CountryID) {
this.countryID = CountryID ;
}
/**
* 设置国家名称
*
* @param CountryName 国家名称
*/
public void setCountryName(String CountryName) {
this.countryName = CountryName ;
}
/**
* 设置电话区号
*
* @param PhoneBoroughID 电话区号
*/
public void setPhoneBoroughID(String PhoneBoroughID) {
this.phoneBoroughID = PhoneBoroughID ;
}
/**
* 设置洲编号
*
* @param ContinentID 洲编号
*/
public void setContinentID(String ContinentID) {
this.continentID = ContinentID ;
}
/**
* 设置洲名称
*
* @param ContinentName 洲名称
*/
public void setContinentName(String ContinentName) {
this.continentName = ContinentName ;
}
/**
* 设置奇偶行区分
*
* @param string 奇偶行区分
*/
public void setRowsKb(String RowsKb) {
this.rowsKb = RowsKb;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -