guoshilong
2024-02-22 c999c167c21e9e07fb9101f422ce356ac30d325e
skjcmanager/skjcmanager-ops-api/skjcmanager-flow-api/src/main/java/cn/gistack/flow/core/feign/IFlowClient.java
@@ -52,6 +52,8 @@
   String DONE_LIST = "/done-list";
   String GET_BLADEFLOW = "/getBladeFlow";
   String HISTORY_FLOW_LIST = "/history-flow-list";
   /**
    * 开启流程
    *
@@ -124,4 +126,9 @@
   @PostMapping(DONE_LIST)
   R<BladeFlowPage> getDoneBladeFlowList(@RequestParam("size") Integer size, @RequestParam("current") Integer current, @RequestParam("currentUserId") String currentUserId, @RequestBody BladeFlowVO bladeFlow);
   @GetMapping(HISTORY_FLOW_LIST)
   R<List<BladeFlow>> historyFlowList(@RequestParam("processInstanceId") String processInstanceId,@RequestParam("startActivityId") String startActivityId,@RequestParam("endActivityId") String endActivityId);
}