first commit
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
package WEB-INF.classes.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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user