first commit

This commit is contained in:
2025-07-28 13:56:49 +05:30
commit e9eb805edb
3438 changed files with 520990 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
package wenrgise.hrms.vo;
import java.io.Serializable;
import wenrgise.common.vo.BaseQueryVO;
public class HrmATDTransCnclOrderSingleEmpQVO extends BaseQueryVO implements Serializable {
String orderNo;
String appNo;
String headerPrimaryKey1;
String employeeId;
public String getOrderNo() {
return this.orderNo;
}
public void setOrderNo(String newOrderNo) {
this.orderNo = newOrderNo;
}
public String getAppNo() {
return this.appNo;
}
public void setAppNo(String newAppNo) {
this.appNo = newAppNo;
}
public String getHeaderPrimaryKey1() {
return this.headerPrimaryKey1;
}
public void setHeaderPrimaryKey1(String newHeaderPrimaryKey1) {
this.headerPrimaryKey1 = newHeaderPrimaryKey1;
}
public String getEmployeeId() {
return this.employeeId;
}
public void setEmployeeId(String newEmployeeId) {
this.employeeId = newEmployeeId;
}
}