37 lines
856 B
Java
37 lines
856 B
Java
package 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;
|
|
}
|
|
}
|