程序包 net.risesoft.api
类 ProcessDoingApiImpl
- java.lang.Object
-
- net.risesoft.api.ProcessDoingApiImpl
-
- 所有已实现的接口:
ProcessDoingApi
@Validated @RestController @RequestMapping(value="/services/rest/doing", produces="application/json") public class ProcessDoingApiImpl extends Object implements ProcessDoingApi在办件列表- 作者:
- qinman, zhangchongjie
- Date:
- 2022/12/30
-
-
构造器概要
构造器 构造器 说明 ProcessDoingApiImpl()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 net.risesoft.pojo.Y9Result<Long>getCountByUserId(String tenantId, String userId)根据人员id获取在办件统计net.risesoft.pojo.Y9Page<ProcessInstanceModel>getListByUserId(String tenantId, String userId, Integer page, Integer rows)根据人员Id获取用户的在办任务(分页,包含流程变量)net.risesoft.pojo.Y9Page<ProcessInstanceModel>getListByUserIdAndProcessDefinitionKey(String tenantId, String userId, String processDefinitionKey, Integer page, Integer rows)根据人员Id,事项ID获取用户的在办列表(分页,包含流程变量)net.risesoft.pojo.Y9Page<ProcessInstanceModel>getListByUserIdAndProcessDefinitionKeyOrderBySendTime(String tenantId, String userId, String processDefinitionKey, Integer page, Integer rows)获取已办件列表,按办理的时间排序net.risesoft.pojo.Y9Page<ProcessInstanceModel>getListByUserIdAndSystemName(String tenantId, String userId, String systemName, Integer page, Integer rows)根据人员Id,系统标识获取用户的在办列表(分页,包含流程变量)net.risesoft.pojo.Y9Page<ProcessInstanceModel>searchListByUserId(String tenantId, String userId, String searchTerm, Integer page, Integer rows)条件搜索在办件net.risesoft.pojo.Y9Page<ProcessInstanceModel>searchListByUserIdAndProcessDefinitionKey(String tenantId, String userId, String processDefinitionKey, String searchTerm, Integer page, Integer rows)根据流程定义key条件搜索在办件net.risesoft.pojo.Y9Page<ProcessInstanceModel>searchListByUserIdAndSystemName(String tenantId, String userId, String systemName, String searchTerm, Integer page, Integer rows)根据系统名条件搜索在办件
-
-
-
方法详细资料
-
getCountByUserId
public net.risesoft.pojo.Y9Result<Long> getCountByUserId(@RequestParam String tenantId, @RequestParam String userId)
根据人员id获取在办件统计- 指定者:
getCountByUserId在接口中ProcessDoingApi- 参数:
tenantId- 租户IduserId- 人员Id- 返回:
Y9Result<Long>通用请求返回对象 - data 在办件统计- 从以下版本开始:
- 9.6.6
-
getListByUserId
public net.risesoft.pojo.Y9Page<ProcessInstanceModel> getListByUserId(@RequestParam String tenantId, @RequestParam String userId, @RequestParam Integer page, @RequestParam Integer rows)
根据人员Id获取用户的在办任务(分页,包含流程变量)- 指定者:
getListByUserId在接口中ProcessDoingApi- 参数:
tenantId- 租户iduserId- 人员idpage- 页码rows- 行数- 返回:
Y9Page<ProcessInstanceModel>通用请求返回对象 - data 在办任务- 从以下版本开始:
- 9.6.6
-
getListByUserIdAndProcessDefinitionKey
public net.risesoft.pojo.Y9Page<ProcessInstanceModel> getListByUserIdAndProcessDefinitionKey(@RequestParam String tenantId, @RequestParam String userId, @RequestParam String processDefinitionKey, @RequestParam Integer page, @RequestParam Integer rows)
根据人员Id,事项ID获取用户的在办列表(分页,包含流程变量)- 指定者:
getListByUserIdAndProcessDefinitionKey在接口中ProcessDoingApi- 参数:
tenantId- 租户iduserId- 人员idprocessDefinitionKey- 流程定义Keypage- 页码rows- 行数- 返回:
Y9Page<ProcessInstanceModel>通用请求返回对象 - data 在办列表- 从以下版本开始:
- 9.6.6
-
getListByUserIdAndProcessDefinitionKeyOrderBySendTime
public net.risesoft.pojo.Y9Page<ProcessInstanceModel> getListByUserIdAndProcessDefinitionKeyOrderBySendTime(@RequestParam String tenantId, @RequestParam String userId, @RequestParam String processDefinitionKey, @RequestParam Integer page, @RequestParam Integer rows)
获取已办件列表,按办理的时间排序- 指定者:
getListByUserIdAndProcessDefinitionKeyOrderBySendTime在接口中ProcessDoingApi- 参数:
tenantId- 租户iduserId- 人员idprocessDefinitionKey- 流程定义keypage- 页码rows- 行数- 返回:
Y9Page<ProcessInstanceModel>通用请求返回对象 - data 在办列表- 从以下版本开始:
- 9.6.6
-
getListByUserIdAndSystemName
public net.risesoft.pojo.Y9Page<ProcessInstanceModel> getListByUserIdAndSystemName(@RequestParam String tenantId, @RequestParam String userId, @RequestParam String systemName, @RequestParam Integer page, @RequestParam Integer rows)
根据人员Id,系统标识获取用户的在办列表(分页,包含流程变量)- 指定者:
getListByUserIdAndSystemName在接口中ProcessDoingApi- 参数:
tenantId- 租户iduserId- 人员idsystemName- 英文系统名称page- 页码rows- 行数- 返回:
Y9Page<ProcessInstanceModel>通用请求返回对象 - data 在办列表- 从以下版本开始:
- 9.6.6
-
searchListByUserId
public net.risesoft.pojo.Y9Page<ProcessInstanceModel> searchListByUserId(@RequestParam String tenantId, @RequestParam String userId, @RequestParam String searchTerm, @RequestParam Integer page, @RequestParam Integer rows)
条件搜索在办件- 指定者:
searchListByUserId在接口中ProcessDoingApi- 参数:
tenantId- 租户iduserId- 人员idsearchTerm- 搜索词page- 页码rows- 行数- 返回:
Y9Page<ProcessInstanceModel>通用请求返回对象 - data 在办列表- 从以下版本开始:
- 9.6.6
-
searchListByUserIdAndProcessDefinitionKey
public net.risesoft.pojo.Y9Page<ProcessInstanceModel> searchListByUserIdAndProcessDefinitionKey(@RequestParam String tenantId, @RequestParam String userId, @RequestParam String processDefinitionKey, @RequestParam(required=false) String searchTerm, @RequestParam Integer page, @RequestParam Integer rows)
根据流程定义key条件搜索在办件- 指定者:
searchListByUserIdAndProcessDefinitionKey在接口中ProcessDoingApi- 参数:
tenantId- 租户iduserId- 人员idprocessDefinitionKey- 流程定义KeysearchTerm- 搜索词page- 页码rows- 行数- 返回:
Y9Page<ProcessInstanceModel>通用请求返回对象 - data 在办列表- 从以下版本开始:
- 9.6.6
-
searchListByUserIdAndSystemName
public net.risesoft.pojo.Y9Page<ProcessInstanceModel> searchListByUserIdAndSystemName(@RequestParam String tenantId, @RequestParam String userId, @RequestParam String systemName, @RequestParam String searchTerm, @RequestParam Integer page, @RequestParam Integer rows)
根据系统名条件搜索在办件- 指定者:
searchListByUserIdAndSystemName在接口中ProcessDoingApi- 参数:
tenantId- 租户iduserId- 人员idsystemName- 英文系统名称searchTerm- 搜索词page- 页码rows- 行数- 返回:
Y9Page<ProcessInstanceModel>通用请求返回对象 - data 在办列表- 从以下版本开始:
- 9.6.6
-
-