Package net.risesoft.api
Class ProcessDoingApiImpl
- java.lang.Object
-
- net.risesoft.api.ProcessDoingApiImpl
-
- All Implemented Interfaces:
ProcessDoingApi
@Validated @RestController @RequestMapping(value="/services/rest/doing", produces="application/json") public class ProcessDoingApiImpl extends Object implements ProcessDoingApi在办件列表- Author:
- qinman, zhangchongjie
- Date:
- 2022/12/30
-
-
Constructor Summary
Constructors Constructor Description ProcessDoingApiImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description 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)根据系统名称和其他条件搜索在办件
-
-
-
Method Detail
-
getCountByUserId
public net.risesoft.pojo.Y9Result<Long> getCountByUserId(@RequestParam String tenantId, @RequestParam String userId)
根据人员id获取在办件统计- Specified by:
getCountByUserIdin interfaceProcessDoingApi- Parameters:
tenantId- 租户IduserId- 人员Id- Returns:
Y9Result<Long>通用请求返回对象 - data 在办件统计- Since:
- 9.6.6
-
getListByUserId
public net.risesoft.pojo.Y9Page<ProcessInstanceModel> getListByUserId(@RequestParam String tenantId, @RequestParam String userId, @RequestParam Integer page, @RequestParam Integer rows)
根据人员Id获取用户的在办任务(分页,包含流程变量)- Specified by:
getListByUserIdin interfaceProcessDoingApi- Parameters:
tenantId- 租户iduserId- 人员idpage- 页码rows- 行数- Returns:
Y9Page<ProcessInstanceModel>通用请求返回对象 - data 在办任务- Since:
- 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获取用户的在办列表(分页,包含流程变量)- Specified by:
getListByUserIdAndProcessDefinitionKeyin interfaceProcessDoingApi- Parameters:
tenantId- 租户iduserId- 人员idprocessDefinitionKey- 流程定义Keypage- 页码rows- 行数- Returns:
Y9Page<ProcessInstanceModel>通用请求返回对象 - data 在办列表- Since:
- 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)
获取已办件列表,按办理的时间排序- Specified by:
getListByUserIdAndProcessDefinitionKeyOrderBySendTimein interfaceProcessDoingApi- Parameters:
tenantId- 租户iduserId- 人员idprocessDefinitionKey- 流程定义keypage- 页码rows- 行数- Returns:
Y9Page<ProcessInstanceModel>通用请求返回对象 - data 在办列表- Since:
- 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,系统标识获取用户的在办列表(分页,包含流程变量)- Specified by:
getListByUserIdAndSystemNamein interfaceProcessDoingApi- Parameters:
tenantId- 租户iduserId- 人员idsystemName- 英文系统名称page- 页码rows- 行数- Returns:
Y9Page<ProcessInstanceModel>通用请求返回对象 - data 在办列表- Since:
- 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)
条件搜索在办件- Specified by:
searchListByUserIdin interfaceProcessDoingApi- Parameters:
tenantId- 租户iduserId- 人员idsearchTerm- 搜索词page- 页码rows- 行数- Returns:
Y9Page<ProcessInstanceModel>通用请求返回对象 - data 在办列表- Since:
- 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和其他条件搜索在办件- Specified by:
searchListByUserIdAndProcessDefinitionKeyin interfaceProcessDoingApi- Parameters:
tenantId- 租户iduserId- 人员idprocessDefinitionKey- 流程定义KeysearchTerm- 搜索词page- 页码rows- 行数- Returns:
Y9Page<ProcessInstanceModel>通用请求返回对象 - data 在办列表- Since:
- 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)
根据系统名称和其他条件搜索在办件- Specified by:
searchListByUserIdAndSystemNamein interfaceProcessDoingApi- Parameters:
tenantId- 租户iduserId- 人员idsystemName- 英文系统名称searchTerm- 搜索词page- 页码rows- 行数- Returns:
Y9Page<ProcessInstanceModel>通用请求返回对象 - data 在办列表- Since:
- 9.6.6
-
-