From 8f61316069a6ffffb0998ed3f498bd4e3acc77e4 Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期二, 10 五月 2022 11:36:15 +0800
Subject: [PATCH] 优化 费用
---
java110-interface/src/main/java/com/java110/intf/common/IOaWorkflowUserInnerServiceSMO.java | 24 +++++++++++++++++++++++-
1 files changed, 23 insertions(+), 1 deletions(-)
diff --git a/java110-interface/src/main/java/com/java110/intf/common/IOaWorkflowUserInnerServiceSMO.java b/java110-interface/src/main/java/com/java110/intf/common/IOaWorkflowUserInnerServiceSMO.java
index a33b5d8..d6223ef 100644
--- a/java110-interface/src/main/java/com/java110/intf/common/IOaWorkflowUserInnerServiceSMO.java
+++ b/java110-interface/src/main/java/com/java110/intf/common/IOaWorkflowUserInnerServiceSMO.java
@@ -11,7 +11,8 @@
import java.util.List;
-@FeignClient(name = "common-service", configuration = {FeignConfiguration.class})
+
+@FeignClient(name = "${java110.common-service}", configuration = {FeignConfiguration.class})
@RequestMapping("/oaWorkflowUserApi")
public interface IOaWorkflowUserInnerServiceSMO {
@@ -68,6 +69,25 @@
boolean completeTask(@RequestBody JSONObject reqJson);
/**
+ * 澶勭悊浠诲姟
+ *
+ * @param reqJson
+ * @return true 涓烘祦绋嬬粨鏉� false 涓烘祦绋嬫病鏈夌粨鏉�
+ */
+ @RequestMapping(value = "/changeTaskToOtherUser", method = RequestMethod.POST)
+ boolean changeTaskToOtherUser(@RequestBody JSONObject reqJson);
+
+ /**
+ * 澶勭悊浠诲姟
+ *
+ * @param reqJson
+ * @return true 涓烘祦绋嬬粨鏉� false 涓烘祦绋嬫病鏈夌粨鏉�
+ */
+ @RequestMapping(value = "/goBackTask", method = RequestMethod.POST)
+ boolean goBackTask(@RequestBody JSONObject reqJson);
+
+
+ /**
* 鏌ヨ鎵规敞淇℃伅
*
* @param reqJson
@@ -85,4 +105,6 @@
@RequestMapping(value = "/getTaskCurrentUser", method = RequestMethod.POST)
JSONObject getTaskCurrentUser(@RequestBody JSONObject reqJson);
+ @RequestMapping(value = "/nextAllNodeTaskList", method = RequestMethod.POST)
+ List<JSONObject> nextAllNodeTaskList(@RequestBody JSONObject reqJson);
}
--
Gitblit v1.8.0