Package net.risesoft.api
Class HistoricIdentityApiImpl
- java.lang.Object
-
- net.risesoft.api.HistoricIdentityApiImpl
-
- All Implemented Interfaces:
HistoricIdentityApi
@RestController @RequestMapping("/services/rest/historicIdentity") public class HistoricIdentityApiImpl extends Object implements HistoricIdentityApi历史流转用户信息接口- Author:
- qinman
- Date:
- 2024/12/23
-
-
Constructor Summary
Constructors Constructor Description HistoricIdentityApiImpl()
-
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 interfaceHistoricIdentityApi- Parameters:
tenantId- 租户idtaskId- 任务id- Returns:
Y9Result<List<IdentityLinkModel>>通用请求返回对象 - data 历任务的用户信息- Since:
- 9.6.6
-
-