57 lines
1.1 KiB
Java
57 lines
1.1 KiB
Java
package WEB-INF.classes.wenrgise.hrms.vo;
|
|
|
|
import java.io.Serializable;
|
|
import wenrgise.common.vo.BaseQueryVO;
|
|
|
|
public class HrmATDTransSingleEmpQVO extends BaseQueryVO implements Serializable {
|
|
private String orderNo;
|
|
|
|
private String orderStatus;
|
|
|
|
private String applnNo;
|
|
|
|
String headerPrimaryKey1;
|
|
|
|
String empID;
|
|
|
|
public String getOrderNo() {
|
|
return this.orderNo;
|
|
}
|
|
|
|
public void setOrderNo(String newOrderNo) {
|
|
this.orderNo = newOrderNo;
|
|
}
|
|
|
|
public String getApplnNo() {
|
|
return this.applnNo;
|
|
}
|
|
|
|
public void setApplnNo(String newApplnNo) {
|
|
this.applnNo = newApplnNo;
|
|
}
|
|
|
|
public String getOrderStatus() {
|
|
return this.orderStatus;
|
|
}
|
|
|
|
public void setOrderStatus(String newOrderStatus) {
|
|
this.orderStatus = newOrderStatus;
|
|
}
|
|
|
|
public String getHeaderPrimaryKey1() {
|
|
return this.headerPrimaryKey1;
|
|
}
|
|
|
|
public void setHeaderPrimaryKey1(String newHeaderPrimaryKey1) {
|
|
this.headerPrimaryKey1 = newHeaderPrimaryKey1;
|
|
}
|
|
|
|
public String getEmpID() {
|
|
return this.empID;
|
|
}
|
|
|
|
public void setEmpID(String newEmpID) {
|
|
this.empID = newEmpID;
|
|
}
|
|
}
|