Skip to content

获取审核人接口

节点提交前

1、接口说明

节点配置审核人为时,调用的业务接口

2、接口类型

get

3、接口使用

3.1、接口示例

java


@ApiOperation("获取用户接口")
@GetMapping("/biz/getHandleId")
public ActionResult<String> getHandleId(String taskId, String taskNodeId) {
    JSONObject result = new JSONObject();
    result.put("handleId", "用户id1,用户id2,用户id2");
    return ActionResult.success(result);
}

3.2、入参

入参入参类型是否必须说明
taskIdstring流程实例id,flow_task表
taskNodeIdstring流程节点id,flow_taskNode表

3.3、返回结果

json
{
  "code": 200,
  "msg": "Success",
  "data": {
    "handleId": "用户id1,用户id2,用户id2"
  }
}