guoshilong
2023-05-12 586019ba7ccb6088ae8bc5f4bfa78cdede1e3e7e
skjcmanager/skjcmanager-ops-api/skjcmanager-flow-api/src/main/java/cn/gistack/flow/core/feign/IFlowClient.java
@@ -16,6 +16,8 @@
 */
package cn.gistack.flow.core.feign;
import cn.gistack.flow.core.vo.BladeFlowVO;
import cn.gistack.sm.patrol.vo.BladeFlowPage;
import com.baomidou.mybatisplus.core.metadata.IPage;
import org.springblade.core.launch.constant.AppConstant;
import org.springblade.core.tool.api.R;
@@ -47,6 +49,7 @@
   String TASK_VARIABLE = API_PREFIX + "/task-variable";
   String TASK_VARIABLES = API_PREFIX + "/task-variables";
   String TODO_LIST = "/todo-list";
   String DONE_LIST = "/done-list";
   String GET_BLADEFLOW = "/getBladeFlow";
   /**
@@ -117,5 +120,8 @@
    * @return R
    */
   @PostMapping(TODO_LIST)
   R<List<BladeFlow>> getTodoBladeFlowList(@RequestParam("size") Integer size,@RequestParam("current") Integer current,@RequestParam("currentUserId") String currentUserId,@RequestBody BladeFlow bladeFlow);
   R<BladeFlowPage> getTodoBladeFlowList(@RequestParam("size") Integer size,@RequestParam("current") Integer current,@RequestParam("currentUserId") String currentUserId,@RequestBody BladeFlow bladeFlow);
   @PostMapping(DONE_LIST)
   R<BladeFlowPage> getDoneBladeFlowList(@RequestParam("size") Integer size, @RequestParam("current") Integer current, @RequestParam("currentUserId") String currentUserId, @RequestBody BladeFlowVO bladeFlow);
}