37 lines
788 B
Java
37 lines
788 B
Java
package wenrgise.hrms.bean;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.bean.BaseHeaderBean;
|
|
|
|
public class HrmOrgCntryMstHdrBean extends BaseHeaderBean implements Serializable {
|
|
String countryCode;
|
|
|
|
String countryName;
|
|
|
|
String countryCodeId;
|
|
|
|
public String getCountryCode() {
|
|
return this.countryCode;
|
|
}
|
|
|
|
public void setCountryCode(String newCountryCode) {
|
|
this.countryCode = newCountryCode;
|
|
}
|
|
|
|
public String getCountryName() {
|
|
return this.countryName;
|
|
}
|
|
|
|
public void setCountryName(String newCountryName) {
|
|
this.countryName = newCountryName;
|
|
}
|
|
|
|
public String getCountryCodeId() {
|
|
return this.countryCodeId;
|
|
}
|
|
|
|
public void setCountryCodeId(String newCountryCodeId) {
|
|
this.countryCodeId = newCountryCodeId;
|
|
}
|
|
}
|