whycxzp
2021-11-05 49a373c5f3a7b34ad495a84d1cc059df48c57438
更新
1个文件已修改
6 ■■■■ 已修改文件
src/main/java/com/whyc/controller/WorkflowActionController.java 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
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);
    }
}