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.BaseDetailBean;
|
||||
|
||||
public class HrmOrgRelationMstDtlBean extends BaseDetailBean implements Serializable {
|
||||
private String txtRelationCode;
|
||||
|
||||
private String txtRelationName;
|
||||
|
||||
String txtOccurence;
|
||||
|
||||
public String getTxtRelationCode() {
|
||||
return this.txtRelationCode;
|
||||
}
|
||||
|
||||
public void setTxtRelationCode(String newTxtRelationCode) {
|
||||
this.txtRelationCode = newTxtRelationCode;
|
||||
}
|
||||
|
||||
public String getTxtOccurence() {
|
||||
return this.txtOccurence;
|
||||
}
|
||||
|
||||
public void setTxtOccurence(String newTxtOccurence) {
|
||||
this.txtOccurence = newTxtOccurence;
|
||||
}
|
||||
|
||||
public String getTxtRelationName() {
|
||||
return this.txtRelationName;
|
||||
}
|
||||
|
||||
public void setTxtRelationName(String newTxtRelationName) {
|
||||
this.txtRelationName = newTxtRelationName;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user