From 49a373c5f3a7b34ad495a84d1cc059df48c57438 Mon Sep 17 00:00:00 2001
From: whycxzp <perryhsu@163.com>
Date: 星期五, 05 十一月 2021 13:58:53 +0800
Subject: [PATCH] 更新

---
 src/main/java/com/whyc/controller/WorkflowActionController.java |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main/java/com/whyc/controller/WorkflowActionController.java b/src/main/java/com/whyc/controller/WorkflowActionController.java
index b18bb3a..cecd831 100644
--- a/src/main/java/com/whyc/controller/WorkflowActionController.java
+++ b/src/main/java/com/whyc/controller/WorkflowActionController.java
@@ -36,8 +36,8 @@
 
     @GetMapping("actionTypeList")
     @ApiOperation(value = "鏌ヨ鍔ㄤ綔绫诲瀷鍒楄〃")
-    public Response<Map<Integer,List<WorkflowAction>>> getActionTypeList(@RequestParam Integer type,@RequestParam Integer linkType){
-        Map<Integer,List<WorkflowAction>> actionTypeList = service.getActionTypeList(type,linkType);
-        return new Response<Map<Integer,List<WorkflowAction>>>().set(1,actionTypeList);
+    public Response<List<WorkflowAction>> getActionTypeList(@RequestParam Integer type,@RequestParam Integer linkType){
+        List<WorkflowAction> actionTypeList = service.getActionTypeList(type,linkType);
+        return new Response<List<WorkflowAction>>().set(1,actionTypeList);
     }
 }

--
Gitblit v1.9.1