17 lines
408 B
Java
17 lines
408 B
Java
package wenrgise.hrms.vo;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.vo.BaseQueryVO;
|
|
|
|
public class HrmRecTestCentreMstQVO extends BaseQueryVO implements Serializable {
|
|
String testCentreCodeId;
|
|
|
|
public String getTestCentreCodeId() {
|
|
return this.testCentreCodeId;
|
|
}
|
|
|
|
public void setTestCentreCodeId(String newTestCentreCodeId) {
|
|
this.testCentreCodeId = newTestCentreCodeId;
|
|
}
|
|
}
|