📄 ems0y0100.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 EMS0Y0100 implements JMEntity {
/** 省编号*/
private String provinceID = null;
/** 省名称*/
private String provinceName = null;
/** 国家编号*/
private String countryID = null;
/** 国家名称*/
private String countryName = null;
/** 奇偶行区分 */
private String rowsKb = null;
/**
* clear
*/
public void clear() {
/* 省编号*/
this.provinceID = null;
/* 省名称*/
this.provinceName = null;
/* 国家编号*/
this.countryID = null;
/* 国家名称*/
this.countryName = null;
}
/**
* 获得存储器内容
*
* @return 存储器内容
*/
public String getItems() {
return "ProvinceID;ProvinceName;CountryID;CountryName";
}
/**
* toString
*/
public String toString() {
return "MS0Y0100:"
/* 省编号*/
+ " provinceID =" + this.provinceID + ", "
/* 省名称*/
+ " provinceName =" + this.provinceName + ", "
/* 国家编号*/
+ " countryID =" + this.countryID + ", "
/* 国家名称*/
+ " countryName =" + this.countryName + ", "
;
}
/**
* 获取省编号
*
* @return ProvinceID 省编号
*/
public String getProvinceID() {
return this.provinceID;
}
/**
* 获取省名称
*
* @return ProvinceName 省名称
*/
public String getProvinceName() {
return this.provinceName;
}
/**
* 获取国家编号
*
* @return CountryID 国家编号
*/
public String getCountryID() {
return this.countryID;
}
/**
* 获取国家名称
*
* @return CountryName 国家名称
*/
public String getCountryName() {
return this.countryName;
}
/**
* 获得奇偶行区分
*
* @return 奇偶行区分
*/
public String getRowsKb() {
return rowsKb;
}
/**
* 设置省编号
*
* @param ProvinceID 省编号
*/
public void setProvinceID(String ProvinceID) {
this.provinceID = ProvinceID ;
}
/**
* 设置省名称
*
* @param ProvinceName 省名称
*/
public void setProvinceName(String ProvinceName) {
this.provinceName = ProvinceName ;
}
/**
* 设置国家编号
*
* @param CountryID 国家编号
*/
public void setCountryID(String CountryID) {
this.countryID = CountryID ;
}
/**
* 设置国家名称
*
* @param CountryName 国家名称
*/
public void setCountryName(String CountryName) {
this.countryName = CountryName ;
}
/**
* 设置奇偶行区分
*
* @param string 奇偶行区分
*/
public void setRowsKb(String RowsKb) {
this.rowsKb = RowsKb;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -