first commit
This commit is contained in:
26
hrmsEjb/wenrgise/workflow/vo/WflDOPGrpQVO.java
Normal file
26
hrmsEjb/wenrgise/workflow/vo/WflDOPGrpQVO.java
Normal file
@@ -0,0 +1,26 @@
|
||||
package wenrgise.workflow.vo;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.vo.BaseQueryVO;
|
||||
|
||||
public class WflDOPGrpQVO extends BaseQueryVO implements Serializable {
|
||||
String grpCode;
|
||||
|
||||
String grpId;
|
||||
|
||||
public String getGrpCode() {
|
||||
return this.grpCode;
|
||||
}
|
||||
|
||||
public void setGrpCode(String newGrpCode) {
|
||||
this.grpCode = newGrpCode;
|
||||
}
|
||||
|
||||
public String getGrpId() {
|
||||
return this.grpId;
|
||||
}
|
||||
|
||||
public void setGrpId(String newGrpId) {
|
||||
this.grpId = newGrpId;
|
||||
}
|
||||
}
|
36
hrmsEjb/wenrgise/workflow/vo/WflDelegationQVO.java
Normal file
36
hrmsEjb/wenrgise/workflow/vo/WflDelegationQVO.java
Normal file
@@ -0,0 +1,36 @@
|
||||
package wenrgise.workflow.vo;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.vo.BaseQueryVO;
|
||||
|
||||
public class WflDelegationQVO extends BaseQueryVO implements Serializable {
|
||||
String fromDate;
|
||||
|
||||
String toDate;
|
||||
|
||||
String empId;
|
||||
|
||||
public String getFromDate() {
|
||||
return this.fromDate;
|
||||
}
|
||||
|
||||
public void setFromDate(String newFromDate) {
|
||||
this.fromDate = newFromDate;
|
||||
}
|
||||
|
||||
public String getToDate() {
|
||||
return this.toDate;
|
||||
}
|
||||
|
||||
public void setToDate(String newToDate) {
|
||||
this.toDate = newToDate;
|
||||
}
|
||||
|
||||
public String getEmpId() {
|
||||
return this.empId;
|
||||
}
|
||||
|
||||
public void setEmpId(String newEmpId) {
|
||||
this.empId = newEmpId;
|
||||
}
|
||||
}
|
6
hrmsEjb/wenrgise/workflow/vo/WflDocMstQVO.java
Normal file
6
hrmsEjb/wenrgise/workflow/vo/WflDocMstQVO.java
Normal file
@@ -0,0 +1,6 @@
|
||||
package wenrgise.workflow.vo;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.vo.BaseQueryVO;
|
||||
|
||||
public class WflDocMstQVO extends BaseQueryVO implements Serializable {}
|
15
hrmsEjb/wenrgise/workflow/vo/WflDtlDocActivityMapQVO.java
Normal file
15
hrmsEjb/wenrgise/workflow/vo/WflDtlDocActivityMapQVO.java
Normal file
@@ -0,0 +1,15 @@
|
||||
package wenrgise.workflow.vo;
|
||||
|
||||
import wenrgise.common.vo.BaseQueryVO;
|
||||
|
||||
public class WflDtlDocActivityMapQVO extends BaseQueryVO {
|
||||
private String dtlDocId;
|
||||
|
||||
public String getDtlDocId() {
|
||||
return this.dtlDocId;
|
||||
}
|
||||
|
||||
public void setDtlDocId(String newDtlDocId) {
|
||||
this.dtlDocId = newDtlDocId;
|
||||
}
|
||||
}
|
3
hrmsEjb/wenrgise/workflow/vo/WflDtlsQVO.java
Normal file
3
hrmsEjb/wenrgise/workflow/vo/WflDtlsQVO.java
Normal file
@@ -0,0 +1,3 @@
|
||||
package wenrgise.workflow.vo;
|
||||
|
||||
public class WflDtlsQVO {}
|
26
hrmsEjb/wenrgise/workflow/vo/WflRouteDtlQVO.java
Normal file
26
hrmsEjb/wenrgise/workflow/vo/WflRouteDtlQVO.java
Normal file
@@ -0,0 +1,26 @@
|
||||
package wenrgise.workflow.vo;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.vo.BaseQueryVO;
|
||||
|
||||
public class WflRouteDtlQVO extends BaseQueryVO implements Serializable {
|
||||
String activityId;
|
||||
|
||||
String dtlDocId;
|
||||
|
||||
public String getActivityId() {
|
||||
return this.activityId;
|
||||
}
|
||||
|
||||
public void setActivityId(String newActivityId) {
|
||||
this.activityId = newActivityId;
|
||||
}
|
||||
|
||||
public String getDtlDocId() {
|
||||
return this.dtlDocId;
|
||||
}
|
||||
|
||||
public void setDtlDocId(String newDtlDocId) {
|
||||
this.dtlDocId = newDtlDocId;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user