| | |
| | | public ResponseEntity<String> queryOaWorkflow(@RequestHeader(value = "store-id") String storeId, |
| | | @RequestHeader(value = "user-id") String userId, |
| | | @RequestParam(value = "flowId", required = false) String flowId, |
| | | @RequestParam(value = "flowName", required = false) String flowName, |
| | | @RequestParam(value = "flowType", required = false) String flowType, |
| | | @RequestParam(value = "state", required = false) String state, |
| | | @RequestParam(value = "page") int page, |
| | | @RequestParam(value = "row") int row) { |
| | |
| | | oaWorkflowDto.setRow(row); |
| | | oaWorkflowDto.setStoreId(storeId); |
| | | oaWorkflowDto.setFlowId(flowId); |
| | | oaWorkflowDto.setFlowName(flowName); |
| | | oaWorkflowDto.setFlowType(flowType); |
| | | oaWorkflowDto.setState(state); |
| | | oaWorkflowDto.setUserId(userId); |
| | | return getOaWorkflowBMOImpl.get(oaWorkflowDto); |