接口 MonitorApi


  • public interface MonitorApi
    监控流程实例接口
    作者:
    qinman, zhangchongjie
    Date:
    2022/12/19
    • 方法详细资料

      • getDoingCountByProcessDefinitionKey

        @GetMapping("/getDoingCountByProcessDefinitionKey")
        net.risesoft.pojo.Y9Result<Long> getDoingCountByProcessDefinitionKey​(@RequestParam("tenantId")
                                                                             String tenantId,
                                                                             @RequestParam("processDefinitionKey")
                                                                             String processDefinitionKey)
        根据流程定义Key获取监控在办件统计
        参数:
        tenantId - 租户Id
        processDefinitionKey - 流程定义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 - 租户Id
        systemName - 系统英文名称
        返回:
        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 - 租户Id
        processDefinitionKey - 流程定义Key
        page - 页码
        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 - 租户Id
        systemName - 系统英文名称
        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 - 租户Id
        processDefinitionKey - 流程定义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 - 租户Id
        processDefinitionKey - 流程定义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 - 租户Id
        systemName - 系统英文名称
        返回:
        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 - 租户Id
        userId - 人员Id
        processDefinitionKey - 流程定义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 - 租户Id
        userId - 人员Id
        systemName - 系统英文名称
        返回:
        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 - 租户Id
        processDefinitionKey - 流程定义Key
        page - 页码
        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 - 租户Id
        systemName - 系统英文名称
        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 - 租户Id
        userId - 用户Id
        processDefinitionKey - 流程定义Key
        page - 页码
        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 - 租户Id
        userId - 人员Id
        systemName - 系统英文名称
        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 - 租户id
        processDefinitionKey - 流程定义Key
        searchTerm - 搜索词
        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 - 租户id
        systemName - 系统英文名称
        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 - 租户id
        processDefinitionKey - 流程定义Key
        searchTerm - 搜索词
        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 - 租户id
        systemName - 系统英文名称
        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 - 租户id
        userId - 用户Id
        processDefinitionKey - 流程定义Key
        searchTerm - 搜索词
        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 - 租户id
        userId - 用户Id
        systemName - 系统英文名称
        searchTerm - 搜索词
        page - 页码
        rows - 行数
        返回:
        Y9Page<HistoricProcessInstanceModel> 通用请求返回对象 - rows 在办件
        从以下版本开始:
        9.6.6