first commit
This commit is contained in:
36
hrmsEjb/wenrgise/hrms/bean/HrmOrgLangMstDtlBean.java
Normal file
36
hrmsEjb/wenrgise/hrms/bean/HrmOrgLangMstDtlBean.java
Normal file
@@ -0,0 +1,36 @@
|
||||
package wenrgise.hrms.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseDetailBean;
|
||||
|
||||
public class HrmOrgLangMstDtlBean extends BaseDetailBean implements Serializable {
|
||||
private String txtCode;
|
||||
|
||||
private String txtDescription;
|
||||
|
||||
private String txtLanguageType;
|
||||
|
||||
public String getTxtCode() {
|
||||
return this.txtCode;
|
||||
}
|
||||
|
||||
public void setTxtCode(String newTxtCode) {
|
||||
this.txtCode = newTxtCode;
|
||||
}
|
||||
|
||||
public String getTxtDescription() {
|
||||
return this.txtDescription;
|
||||
}
|
||||
|
||||
public void setTxtDescription(String newTxtDescription) {
|
||||
this.txtDescription = newTxtDescription;
|
||||
}
|
||||
|
||||
public String getTxtLanguageType() {
|
||||
return this.txtLanguageType;
|
||||
}
|
||||
|
||||
public void setTxtLanguageType(String newTxtLanguageType) {
|
||||
this.txtLanguageType = newTxtLanguageType;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user