接口 MonitorApi
-
public interface MonitorApi监控流程实例接口- 作者:
- qinman, zhangchongjie
- Date:
- 2022/12/19
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 net.risesoft.pojo.Y9Result<Long>getDoingCountByProcessDefinitionKey(String tenantId, String processDefinitionKey)根据流程定义Key获取监控在办件统计net.risesoft.pojo.Y9Result<Long>getDoingCountBySystemName(String tenantId, String systemName)根据系统英文名称获取监控在办件数量net.risesoft.pojo.Y9Page<HistoricProcessInstanceModel>getDoingListByProcessDefinitionKey(String tenantId, String processDefinitionKey, Integer page, Integer rows)根据流程定义Key获取监控在办件net.risesoft.pojo.Y9Page<HistoricProcessInstanceModel>getDoingListBySystemName(String tenantId, String systemName, Integer page, Integer rows)根据系统名称获取监控在办件net.risesoft.pojo.Y9Result<Long>getDoneCountByProcessDefinitionKey(String tenantId, String processDefinitionKey)根据流程定义Key获取监控办结件统计net.risesoft.pojo.Y9Result<Long>getRecycleCountByProcessDefinitionKey(String tenantId, String processDefinitionKey)根据流程定义Key获取监控回收站统计net.risesoft.pojo.Y9Result<Long>getRecycleCountBySystemName(String tenantId, String systemName)根据系统英文名称获取监控回收站统计net.risesoft.pojo.Y9Result<Long>getRecycleCountByUserIdAndProcessDefinitionKey(String tenantId, String userId, String processDefinitionKey)根据人员Id,流程定义Key获取监控回收站统计net.risesoft.pojo.Y9Result<Long>getRecycleCountByUserIdAndSystemName(String tenantId, String userId, String systemName)根据人员id获取监控回收站统计net.risesoft.pojo.Y9Page<HistoricProcessInstanceModel>getRecycleListByProcessDefinitionKey(String tenantId, String processDefinitionKey, Integer page, Integer rows)根据流程定义key获取回收站列表net.risesoft.pojo.Y9Page<HistoricProcessInstanceModel>getRecycleListBySystemName(String tenantId, String systemName, Integer page, Integer rows)根据系统英文名称获取回收站列表net.risesoft.pojo.Y9Page<HistoricProcessInstanceModel>getRecycleListByUserIdAndProcessDefinitionKey(String tenantId, String userId, String processDefinitionKey, Integer page, Integer rows)根据流程定义Key获取回收站列表net.risesoft.pojo.Y9Page<HistoricProcessInstanceModel>getRecycleListByUserIdAndSystemName(String tenantId, String userId, String systemName, Integer page, Integer rows)根据人员id,系统英文名称获取回收站列表net.risesoft.pojo.Y9Page<HistoricProcessInstanceModel>searchDoingListByProcessDefinitionKey(String tenantId, String processDefinitionKey, String searchTerm, Integer page, Integer rows)根据流程定义Key条件搜索在办件net.risesoft.pojo.Y9Page<HistoricProcessInstanceModel>searchDoingListBySystemName(String tenantId, String systemName, String searchTerm, Integer page, Integer rows)根据系统英文名称条件搜索在办件net.risesoft.pojo.Y9Page<HistoricProcessInstanceModel>searchRecycleListByProcessDefinitionKey(String tenantId, String processDefinitionKey, String searchTerm, Integer page, Integer rows)根据流程定义Key条件搜索回收站件net.risesoft.pojo.Y9Page<HistoricProcessInstanceModel>searchRecycleListBySystemName(String tenantId, String systemName, String searchTerm, Integer page, Integer rows)根据系统英文名称条件搜索回收站件net.risesoft.pojo.Y9Page<HistoricProcessInstanceModel>searchRecycleListByUserIdAndProcessDefinitionKey(String tenantId, String userId, String processDefinitionKey, String searchTerm, Integer page, Integer rows)根据用户Id,流程定义Key条件搜索回收站件net.risesoft.pojo.Y9Page<HistoricProcessInstanceModel>searchRecycleListByUserIdAndSystemName(String tenantId, String userId, String systemName, String searchTerm, Integer page, Integer rows)根据用户Id,系统英文名称条件搜索回收站件
-
-
-
方法详细资料
-
getDoingCountByProcessDefinitionKey
@GetMapping("/getDoingCountByProcessDefinitionKey") net.risesoft.pojo.Y9Result<Long> getDoingCountByProcessDefinitionKey(@RequestParam("tenantId") String tenantId, @RequestParam("processDefinitionKey") String processDefinitionKey)根据流程定义Key获取监控在办件统计- 参数:
tenantId- 租户IdprocessDefinitionKey- 流程定义Key- 返回:
Y9Result<Long>通用请求返回对象 - data 在办件数量- 从以下版本开始:
- 9.6.6
-
getDoingCountBySystemName
@GetMapping("/getDoingCountBySystemName") net.risesoft.pojo.Y9Result<Long> getDoingCountBySystemName(@RequestParam("tenantId") String tenantId, @RequestParam("systemName") String systemName)根据系统英文名称获取监控在办件数量- 参数:
tenantId- 租户IdsystemName- 系统英文名称- 返回:
Y9Result<Long>通用请求返回对象 - data 在办件数量- 从以下版本开始:
- 9.6.6
-
getDoingListByProcessDefinitionKey
@GetMapping("/getDoingListByProcessDefinitionKey") net.risesoft.pojo.Y9Page<HistoricProcessInstanceModel> getDoingListByProcessDefinitionKey(@RequestParam("tenantId") String tenantId, @RequestParam("processDefinitionKey") String processDefinitionKey, @RequestParam("page") Integer page, @RequestParam("rows") Integer rows)根据流程定义Key获取监控在办件- 参数:
tenantId- 租户IdprocessDefinitionKey- 流程定义Keypage- 页码rows- 行数- 返回:
Y9Page<HistoricProcessInstanceModel>通用请求返回对象 - rows 在办件列表- 从以下版本开始:
- 9.6.6
-
getDoingListBySystemName
@GetMapping("/getDoingListBySystemName") net.risesoft.pojo.Y9Page<HistoricProcessInstanceModel> getDoingListBySystemName(@RequestParam("tenantId") String tenantId, @RequestParam("systemName") String systemName, @RequestParam("page") Integer page, @RequestParam("rows") Integer rows)根据系统名称获取监控在办件- 参数:
tenantId- 租户IdsystemName- 系统英文名称page- 页码rows- 行数- 返回:
Y9Page<HistoricProcessInstanceModel>通用请求返回对象 - rows 在办件列表- 从以下版本开始:
- 9.6.6
-
getDoneCountByProcessDefinitionKey
@GetMapping("/getDoneCountByProcessDefinitionKey") net.risesoft.pojo.Y9Result<Long> getDoneCountByProcessDefinitionKey(@RequestParam("tenantId") String tenantId, @RequestParam("processDefinitionKey") String processDefinitionKey)根据流程定义Key获取监控办结件统计- 参数:
tenantId- 租户IdprocessDefinitionKey- 流程定义Key- 返回:
Y9Result<Long>通用请求返回对象 - data 办结件统计- 从以下版本开始:
- 9.6.6
-
getRecycleCountByProcessDefinitionKey
@GetMapping("/getRecycleCountByProcessDefinitionKey") net.risesoft.pojo.Y9Result<Long> getRecycleCountByProcessDefinitionKey(@RequestParam("tenantId") String tenantId, @RequestParam("processDefinitionKey") String processDefinitionKey)根据流程定义Key获取监控回收站统计- 参数:
tenantId- 租户IdprocessDefinitionKey- 流程定义Key- 返回:
Y9Result<Long>通用请求返回对象 - data 回收站统计- 从以下版本开始:
- 9.6.6
-
getRecycleCountBySystemName
@GetMapping("/getRecycleCountBySystemName") net.risesoft.pojo.Y9Result<Long> getRecycleCountBySystemName(@RequestParam("tenantId") String tenantId, @RequestParam("systemName") String systemName)根据系统英文名称获取监控回收站统计- 参数:
tenantId- 租户IdsystemName- 系统英文名称- 返回:
Y9Result<Long>通用请求返回对象 - data 回收站统计- 从以下版本开始:
- 9.6.6
-
getRecycleCountByUserIdAndProcessDefinitionKey
@GetMapping("/getRecycleCountByUserIdAndProcessDefinitionKey") net.risesoft.pojo.Y9Result<Long> getRecycleCountByUserIdAndProcessDefinitionKey(@RequestParam("tenantId") String tenantId, @RequestParam("userId") String userId, @RequestParam("processDefinitionKey") String processDefinitionKey)根据人员Id,流程定义Key获取监控回收站统计- 参数:
tenantId- 租户IduserId- 人员IdprocessDefinitionKey- 流程定义Key- 返回:
Y9Result<Long>通用请求返回对象 - data 回收站统计- 从以下版本开始:
- 9.6.6
-
getRecycleCountByUserIdAndSystemName
@GetMapping("/getRecycleCountByUserIdAndSystemName") net.risesoft.pojo.Y9Result<Long> getRecycleCountByUserIdAndSystemName(@RequestParam("tenantId") String tenantId, @RequestParam("userId") String userId, @RequestParam("systemName") String systemName)根据人员id获取监控回收站统计- 参数:
tenantId- 租户IduserId- 人员IdsystemName- 系统英文名称- 返回:
Y9Result<Long>通用请求返回对象 - data 回收站统计- 从以下版本开始:
- 9.6.6
-
getRecycleListByProcessDefinitionKey
@GetMapping("/getRecycleListByProcessDefinitionKey") net.risesoft.pojo.Y9Page<HistoricProcessInstanceModel> getRecycleListByProcessDefinitionKey(@RequestParam("tenantId") String tenantId, @RequestParam("processDefinitionKey") String processDefinitionKey, @RequestParam("page") Integer page, @RequestParam("rows") Integer rows)根据流程定义key获取回收站列表- 参数:
tenantId- 租户IdprocessDefinitionKey- 流程定义Keypage- 页码rows- 行数- 返回:
Y9Page<HistoricProcessInstanceModel>通用请求返回对象 - rows 回收站列表- 从以下版本开始:
- 9.6.6
-
getRecycleListBySystemName
@GetMapping("/getRecycleListBySystemName") net.risesoft.pojo.Y9Page<HistoricProcessInstanceModel> getRecycleListBySystemName(@RequestParam("tenantId") String tenantId, @RequestParam("systemName") String systemName, @RequestParam("page") Integer page, @RequestParam("rows") Integer rows)根据系统英文名称获取回收站列表- 参数:
tenantId- 租户IdsystemName- 系统英文名称page- 页码rows- 行数- 返回:
Y9Page<HistoricProcessInstanceModel>通用请求返回对象 - rows 回收站列表- 从以下版本开始:
- 9.6.6
-
getRecycleListByUserIdAndProcessDefinitionKey
@GetMapping("/getRecycleListByUserIdAndProcessDefinitionKey") net.risesoft.pojo.Y9Page<HistoricProcessInstanceModel> getRecycleListByUserIdAndProcessDefinitionKey(@RequestParam("tenantId") String tenantId, @RequestParam("userId") String userId, @RequestParam("processDefinitionKey") String processDefinitionKey, @RequestParam("page") Integer page, @RequestParam("rows") Integer rows)根据流程定义Key获取回收站列表- 参数:
tenantId- 租户IduserId- 用户IdprocessDefinitionKey- 流程定义Keypage- 页码rows- 行数- 返回:
Y9Page<HistoricProcessInstanceModel>通用请求返回对象 - rows 回收站列表- 从以下版本开始:
- 9.6.6
-
getRecycleListByUserIdAndSystemName
@GetMapping("/getRecycleListByUserIdAndSystemName") net.risesoft.pojo.Y9Page<HistoricProcessInstanceModel> getRecycleListByUserIdAndSystemName(@RequestParam("tenantId") String tenantId, @RequestParam("userId") String userId, @RequestParam("systemName") String systemName, @RequestParam("page") Integer page, @RequestParam("rows") Integer rows)根据人员id,系统英文名称获取回收站列表- 参数:
tenantId- 租户IduserId- 人员IdsystemName- 系统英文名称page- 当前页rows- 总条数- 返回:
Y9Page<HistoricProcessInstanceModel>通用请求返回对象 - rows 回收站列表- 从以下版本开始:
- 9.6.6
-
searchDoingListByProcessDefinitionKey
@GetMapping("/searchDoingListByProcessDefinitionKey") net.risesoft.pojo.Y9Page<HistoricProcessInstanceModel> searchDoingListByProcessDefinitionKey(@RequestParam("tenantId") String tenantId, @RequestParam("processDefinitionKey") String processDefinitionKey, @RequestParam("searchTerm") String searchTerm, @RequestParam("page") Integer page, @RequestParam("rows") Integer rows)根据流程定义Key条件搜索在办件- 参数:
tenantId- 租户idprocessDefinitionKey- 流程定义KeysearchTerm- 搜索词page- 页码rows- 行数- 返回:
Y9Page<HistoricProcessInstanceModel>通用请求返回对象 - rows 在办件- 从以下版本开始:
- 9.6.6
-
searchDoingListBySystemName
@GetMapping("/searchDoingListBySystemName") net.risesoft.pojo.Y9Page<HistoricProcessInstanceModel> searchDoingListBySystemName(@RequestParam("tenantId") String tenantId, @RequestParam("systemName") String systemName, @RequestParam("searchTerm") String searchTerm, @RequestParam("page") Integer page, @RequestParam("rows") Integer rows)根据系统英文名称条件搜索在办件- 参数:
tenantId- 租户idsystemName- 系统英文名称searchTerm- 搜索词page- 页码rows- 行数- 返回:
Y9Page<HistoricProcessInstanceModel>通用请求返回对象 - rows 在办件- 从以下版本开始:
- 9.6.6
-
searchRecycleListByProcessDefinitionKey
@GetMapping("/searchRecycleListByProcessDefinitionKey") net.risesoft.pojo.Y9Page<HistoricProcessInstanceModel> searchRecycleListByProcessDefinitionKey(@RequestParam("tenantId") String tenantId, @RequestParam("processDefinitionKey") String processDefinitionKey, @RequestParam("searchTerm") String searchTerm, @RequestParam("page") Integer page, @RequestParam("rows") Integer rows)根据流程定义Key条件搜索回收站件- 参数:
tenantId- 租户idprocessDefinitionKey- 流程定义KeysearchTerm- 搜索词page- 页码rows- 行数- 返回:
Y9Page<HistoricProcessInstanceModel>通用请求返回对象 - rows 在办件- 从以下版本开始:
- 9.6.6
-
searchRecycleListBySystemName
@GetMapping("/searchRecycleListBySystemName") net.risesoft.pojo.Y9Page<HistoricProcessInstanceModel> searchRecycleListBySystemName(@RequestParam("tenantId") String tenantId, @RequestParam("systemName") String systemName, @RequestParam("searchTerm") String searchTerm, @RequestParam("page") Integer page, @RequestParam("rows") Integer rows)根据系统英文名称条件搜索回收站件- 参数:
tenantId- 租户idsystemName- 系统英文名称searchTerm- 搜索词page- 页码rows- 行数- 返回:
Y9Page<HistoricProcessInstanceModel>通用请求返回对象 - rows 在办件- 从以下版本开始:
- 9.6.6
-
searchRecycleListByUserIdAndProcessDefinitionKey
@GetMapping("/searchRecycleListByUserIdAndProcessDefinitionKey") net.risesoft.pojo.Y9Page<HistoricProcessInstanceModel> searchRecycleListByUserIdAndProcessDefinitionKey(@RequestParam("tenantId") String tenantId, @RequestParam("userId") String userId, @RequestParam("processDefinitionKey") String processDefinitionKey, @RequestParam("searchTerm") String searchTerm, @RequestParam("page") Integer page, @RequestParam("rows") Integer rows)根据用户Id,流程定义Key条件搜索回收站件- 参数:
tenantId- 租户iduserId- 用户IdprocessDefinitionKey- 流程定义KeysearchTerm- 搜索词page- 页码rows- 行数- 返回:
Y9Page<HistoricProcessInstanceModel>通用请求返回对象 - rows 在办件- 从以下版本开始:
- 9.6.6
-
searchRecycleListByUserIdAndSystemName
@GetMapping("/searchRecycleListByUserIdAndSystemName") net.risesoft.pojo.Y9Page<HistoricProcessInstanceModel> searchRecycleListByUserIdAndSystemName(@RequestParam("tenantId") String tenantId, @RequestParam("userId") String userId, @RequestParam("systemName") String systemName, @RequestParam("searchTerm") String searchTerm, @RequestParam("page") Integer page, @RequestParam("rows") Integer rows)根据用户Id,系统英文名称条件搜索回收站件- 参数:
tenantId- 租户iduserId- 用户IdsystemName- 系统英文名称searchTerm- 搜索词page- 页码rows- 行数- 返回:
Y9Page<HistoricProcessInstanceModel>通用请求返回对象 - rows 在办件- 从以下版本开始:
- 9.6.6
-
-