Package net.risesoft.api
Class ItemInterfaceApiImpl
- java.lang.Object
-
- net.risesoft.api.ItemInterfaceApiImpl
-
- All Implemented Interfaces:
ItemInterfaceApi
@RestController @RequestMapping(value="/services/rest/itemInterface", produces="application/json") public class ItemInterfaceApiImpl extends Object implements ItemInterfaceApi事项接口绑定信息- Author:
- zhangchongjie
- Date:
- 2024/05/27
-
-
Constructor Summary
Constructors Constructor Description ItemInterfaceApiImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description net.risesoft.pojo.Y9Result<List<InterfaceModel>>getInterface(String tenantId, String itemId, String taskKey, String processDefinitionId, String condition)获取事项绑定的接口信息net.risesoft.pojo.Y9Result<List<InterfaceModel>>getInterfaceList(String tenantId, String itemId)根据事项id获取绑定接口net.risesoft.pojo.Y9Result<List<InterfaceParamsModel>>getInterfaceParams(String tenantId, String itemId, String interfaceId)获取事项绑定的接口参数信息net.risesoft.pojo.Y9Result<TaskTimeConfModel>getTaskTimeConf(String tenantId, String processDefinitionId, String itemId, String taskKey)获取任务时间配置信息
-
-
-
Method Detail
-
getInterface
public net.risesoft.pojo.Y9Result<List<InterfaceModel>> getInterface(@RequestParam String tenantId, @RequestParam String itemId, String taskKey, @RequestParam String processDefinitionId, @RequestParam String condition)
获取事项绑定的接口信息- Specified by:
getInterfacein interfaceItemInterfaceApi- Parameters:
tenantId- 租户iditemId- 事项idtaskKey- 任务keyprocessDefinitionId- 流程定义idcondition- 执行条件- Returns:
Y9Result<List<InterfaceModel>>通用请求返回对象 - data 是接口绑定参数列表- Since:
- 9.6.6
-
getInterfaceList
public net.risesoft.pojo.Y9Result<List<InterfaceModel>> getInterfaceList(@RequestParam String tenantId, @RequestParam String itemId)
根据事项id获取绑定接口- Specified by:
getInterfaceListin interfaceItemInterfaceApi- Parameters:
tenantId- 租户iditemId- 事项id- Returns:
Y9Result<List<InterfaceModel>>通用请求返回对象 - data 是接口绑定列表- Since:
- 9.6.6
-
getInterfaceParams
public net.risesoft.pojo.Y9Result<List<InterfaceParamsModel>> getInterfaceParams(@RequestParam String tenantId, @RequestParam String itemId, @RequestParam String interfaceId)
获取事项绑定的接口参数信息- Specified by:
getInterfaceParamsin interfaceItemInterfaceApi- Parameters:
tenantId- 租户iditemId- 事项idinterfaceId- 接口id- Returns:
Y9Result<List<InterfaceParamsModel>>通用请求返回对象 - data 是接口绑定参数列表- Since:
- 9.6.6
-
getTaskTimeConf
public net.risesoft.pojo.Y9Result<TaskTimeConfModel> getTaskTimeConf(@RequestParam String tenantId, @RequestParam String processDefinitionId, @RequestParam String itemId, String taskKey)
获取任务时间配置信息- Specified by:
getTaskTimeConfin interfaceItemInterfaceApi- Parameters:
tenantId- 租户iditemId- 事项idprocessDefinitionId- 流程定义idtaskKey- 任务key- Returns:
Y9Result<TaskTimeConfModel>通用请求返回对象 - data 是任务时间配置信息- Since:
- 9.6.6
-
-