程序包 net.risesoft.api
类 AssociatedFileApiImpl
- java.lang.Object
-
- net.risesoft.api.AssociatedFileApiImpl
-
- 所有已实现的接口:
AssociatedFileApi
@Validated @RestController @RequestMapping(value="/services/rest/associatedFile", produces="application/json") public class AssociatedFileApiImpl extends Object implements AssociatedFileApi关联流程接口- 作者:
- qinman, zhangchongjie
- Date:
- 2022/12/20
-
-
构造器概要
构造器 构造器 说明 AssociatedFileApiImpl()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 net.risesoft.pojo.Y9Result<Integer>countAssociatedFile(@NotBlank String tenantId, @NotBlank String processSerialNumber)关联流程数量net.risesoft.pojo.Y9Result<Object>deleteAllAssociatedFile(String tenantId, String processSerialNumber, String delIds)批量删除关联流程net.risesoft.pojo.Y9Result<Object>deleteAssociatedFile(String tenantId, String processSerialNumber, String delId)删除关联流程net.risesoft.pojo.Y9Result<List<AssociatedFileModel>>getAssociatedFileAllList(String tenantId, String orgUnitId, String processSerialNumber)获取关联流程列表(包括未办结件)net.risesoft.pojo.Y9Result<Object>saveAssociatedFile(String tenantId, String orgUnitId, String processSerialNumber, String processInstanceIds)保存关联流程信息
-
-
-
方法详细资料
-
countAssociatedFile
public net.risesoft.pojo.Y9Result<Integer> countAssociatedFile(@RequestParam @NotBlank @NotBlank String tenantId, @RequestParam @NotBlank @NotBlank String processSerialNumber)
关联流程数量- 指定者:
countAssociatedFile在接口中AssociatedFileApi- 参数:
tenantId- 租户idprocessSerialNumber- 流程编号- 返回:
Y9Result<Integer>通用请求返回对象 - data是关联流程计数- 从以下版本开始:
- 9.6.6
-
deleteAllAssociatedFile
public net.risesoft.pojo.Y9Result<Object> deleteAllAssociatedFile(@RequestParam String tenantId, @RequestParam String processSerialNumber, @RequestParam String delIds)
批量删除关联流程- 指定者:
deleteAllAssociatedFile在接口中AssociatedFileApi- 参数:
tenantId- 租户idprocessSerialNumber- 流程编号delIds- 关联流程实例id(,隔开)- 返回:
Y9Result<Object>通用请求返回对象- 从以下版本开始:
- 9.6.6
-
deleteAssociatedFile
public net.risesoft.pojo.Y9Result<Object> deleteAssociatedFile(@RequestParam String tenantId, @RequestParam String processSerialNumber, @RequestParam String delId)
删除关联流程- 指定者:
deleteAssociatedFile在接口中AssociatedFileApi- 参数:
tenantId- 租户idprocessSerialNumber- 流程编号delId- 关联流程实例id- 返回:
Y9Result<Object>通用请求返回对象- 从以下版本开始:
- 9.6.6
-
getAssociatedFileAllList
public net.risesoft.pojo.Y9Result<List<AssociatedFileModel>> getAssociatedFileAllList(@RequestParam String tenantId, @RequestParam String orgUnitId, @RequestParam String processSerialNumber)
获取关联流程列表(包括未办结件)- 指定者:
getAssociatedFileAllList在接口中AssociatedFileApi- 参数:
tenantId- 租户idorgUnitId- 人员、岗位idprocessSerialNumber- 流程编号- 返回:
Y9Result<List<AssociatedFileModel>>通用请求返回对象 - data是关联流程列表- 从以下版本开始:
- 9.6.6
-
saveAssociatedFile
public net.risesoft.pojo.Y9Result<Object> saveAssociatedFile(@RequestParam String tenantId, @RequestParam String orgUnitId, @RequestParam String processSerialNumber, @RequestParam String processInstanceIds)
保存关联流程信息- 指定者:
saveAssociatedFile在接口中AssociatedFileApi- 参数:
tenantId- 租户idorgUnitId- 人员、岗位idprocessSerialNumber- 流程编号processInstanceIds- 关联的流程实例ids- 返回:
Y9Result<Object>通用请求返回对象- 从以下版本开始:
- 9.6.6
-
-