Package net.risesoft.api
Class IdentityApiImpl
- java.lang.Object
-
- net.risesoft.api.IdentityApiImpl
-
- All Implemented Interfaces:
IdentityApi
@RestController @RequestMapping("/services/rest/identity") public class IdentityApiImpl extends Object implements IdentityApi流转用户信息接口- Author:
- qinman, zhangchongjie
- Date:
- 2022/12/30
-
-
Constructor Summary
Constructors Constructor Description IdentityApiImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description net.risesoft.pojo.Y9Result<List<IdentityLinkModel>>getIdentityLinksForTask(String tenantId, String taskId)获取任务的用户信息
-
-
-
Method Detail
-
getIdentityLinksForTask
public net.risesoft.pojo.Y9Result<List<IdentityLinkModel>> getIdentityLinksForTask(@RequestParam String tenantId, @RequestParam String taskId)
获取任务的用户信息- Specified by:
getIdentityLinksForTaskin interfaceIdentityApi- Parameters:
tenantId- 租户idtaskId- 任务id- Returns:
Y9Result<List<IdentityLinkModel>>通用请求返回对象 - data 历任务的用户信息- Since:
- 9.6.6
-
-