67 lines
1.3 KiB
Java
67 lines
1.3 KiB
Java
package wenrgise.hrms.bean;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.bean.BaseHeaderBean;
|
|
|
|
public class HrmRecTestCentreMstHdrBean extends BaseHeaderBean implements Serializable {
|
|
String testCentreCodeId;
|
|
|
|
String address;
|
|
|
|
String fax;
|
|
|
|
String phone;
|
|
|
|
String testCentreCode;
|
|
|
|
String testCentreName;
|
|
|
|
public String getTestCentreCodeId() {
|
|
return this.testCentreCodeId;
|
|
}
|
|
|
|
public void setTestCentreCodeId(String newTestCentreCodeId) {
|
|
this.testCentreCodeId = newTestCentreCodeId;
|
|
}
|
|
|
|
public String getAddress() {
|
|
return this.address;
|
|
}
|
|
|
|
public void setAddress(String newAddress) {
|
|
this.address = newAddress;
|
|
}
|
|
|
|
public String getFax() {
|
|
return this.fax;
|
|
}
|
|
|
|
public void setFax(String newFax) {
|
|
this.fax = newFax;
|
|
}
|
|
|
|
public String getPhone() {
|
|
return this.phone;
|
|
}
|
|
|
|
public void setPhone(String newPhone) {
|
|
this.phone = newPhone;
|
|
}
|
|
|
|
public String getTestCentreCode() {
|
|
return this.testCentreCode;
|
|
}
|
|
|
|
public void setTestCentreCode(String newTestCentreCode) {
|
|
this.testCentreCode = newTestCentreCode;
|
|
}
|
|
|
|
public String getTestCentreName() {
|
|
return this.testCentreName;
|
|
}
|
|
|
|
public void setTestCentreName(String newTestCentreName) {
|
|
this.testCentreName = newTestCentreName;
|
|
}
|
|
}
|