程序包 net.risesoft.api
类 ItemInterfaceApiImpl
- java.lang.Object
-
- net.risesoft.api.ItemInterfaceApiImpl
-
- 所有已实现的接口:
ItemInterfaceApi
@RestController @RequestMapping(value="/services/rest/itemInterface", produces="application/json") public class ItemInterfaceApiImpl extends Object implements ItemInterfaceApi事项接口绑定信息- 作者:
- zhangchongjie
- Date:
- 2024/05/27
-
-
构造器概要
构造器 构造器 说明 ItemInterfaceApiImpl()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 net.risesoft.pojo.Y9Result<List<InterfaceModel>>getInterface(String tenantId, String itemId, String taskKey, String processDefinitionId, String condition)获取事项接口信息net.risesoft.pojo.Y9Result<List<InterfaceParamsModel>>getInterfaceParams(String tenantId, String itemId, String interfaceId)获取事项接口参数信息
-
-
-
方法详细资料
-
getInterface
public net.risesoft.pojo.Y9Result<List<InterfaceModel>> getInterface(@RequestParam String tenantId, @RequestParam String itemId, @RequestParam String taskKey, @RequestParam String processDefinitionId, @RequestParam String condition)
获取事项接口信息- 指定者:
getInterface在接口中ItemInterfaceApi- 参数:
tenantId- 租户iditemId- 事项idtaskKey- 任务keyprocessDefinitionId- 流程定义idcondition- 执行条件- 返回:
Y9Result<List<InterfaceModel>>通用请求返回对象 - data 是接口绑定参数列表- 从以下版本开始:
- 9.6.6
-
getInterfaceParams
public net.risesoft.pojo.Y9Result<List<InterfaceParamsModel>> getInterfaceParams(@RequestParam String tenantId, @RequestParam String itemId, @RequestParam String interfaceId)
获取事项接口参数信息- 指定者:
getInterfaceParams在接口中ItemInterfaceApi- 参数:
tenantId- 租户iditemId- 事项idinterfaceId- 接口id- 返回:
Y9Result<List<InterfaceParamsModel>>通用请求返回对象 - data 是接口绑定参数列表- 从以下版本开始:
- 9.6.6
-
-