47 lines
949 B
Java
47 lines
949 B
Java
package wenrgise.hrms.bean;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.bean.BaseDetailBean;
|
|
|
|
public class HrmRecApplnMtnRefDtlBean extends BaseDetailBean implements Serializable {
|
|
private String txtName;
|
|
|
|
private String txtAddress;
|
|
|
|
private String txtPhone;
|
|
|
|
private String txtPosition;
|
|
|
|
public String getTxtName() {
|
|
return this.txtName;
|
|
}
|
|
|
|
public void setTxtName(String newTxtName) {
|
|
this.txtName = newTxtName;
|
|
}
|
|
|
|
public String getTxtAddress() {
|
|
return this.txtAddress;
|
|
}
|
|
|
|
public void setTxtAddress(String newTxtAddress) {
|
|
this.txtAddress = newTxtAddress;
|
|
}
|
|
|
|
public String getTxtPhone() {
|
|
return this.txtPhone;
|
|
}
|
|
|
|
public void setTxtPhone(String newTxtPhone) {
|
|
this.txtPhone = newTxtPhone;
|
|
}
|
|
|
|
public String getTxtPosition() {
|
|
return this.txtPosition;
|
|
}
|
|
|
|
public void setTxtPosition(String newTxtPosition) {
|
|
this.txtPosition = newTxtPosition;
|
|
}
|
|
}
|