程序包 net.risesoft.api
类 ProcessTodoApiImpl
- java.lang.Object
-
- net.risesoft.api.ProcessTodoApiImpl
-
- 所有已实现的接口:
ProcessTodoApi
@RestController @RequestMapping("/services/rest/processTodo") public class ProcessTodoApiImpl extends Object implements ProcessTodoApi待办件列表- 作者:
- qinman, zhangchongjie
- Date:
- 2022/12/30
-
-
构造器概要
构造器 构造器 说明 ProcessTodoApiImpl()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 net.risesoft.pojo.Y9Result<Long>countByPositionId(String tenantId, String positionId)根据岗位id获取待办数量net.risesoft.pojo.Y9Result<Y9FlowableCountModel>getCountByUserIdAndProcessDefinitionKey(String tenantId, String userId, String processDefinitionKey)根据人员id,流程定义Key获取对应事项的办件统计(包括待办件,在办件,办结件)net.risesoft.pojo.Y9Result<Y9FlowableCountModel>getCountByUserIdAndSystemName(String tenantId, String userId, String systemName)根据人员id,系统标识获取对应事项的办件统计(包括待办件,在办件,办结件)net.risesoft.pojo.Y9Page<TaskModel>getListByUserIdAndProcessDefinitionKey(@NotBlank String tenantId, @NotBlank String userId, @NotBlank String processDefinitionKey, Integer page, Integer rows)根据人员Id,流程定义Key获取用户的待办任务(分页)net.risesoft.pojo.Y9Page<TaskModel>getListByUserIdAndSystemName(@NotBlank String tenantId, @NotBlank String userId, @NotBlank String systemName, Integer page, Integer rows)根据人员Id,系统标识获取用户的待办任务(分页)net.risesoft.pojo.Y9Result<Long>getTodoCountByPositionIdAndProcessDefinitionKey(String tenantId, String positionId, String processDefinitionKey)根据岗位id,流程定义key获取对应事项的待办数量net.risesoft.pojo.Y9Result<Long>getTodoCountByUserIdAndSystemName(String tenantId, String userId, String systemName)根据人员id,系统标识获取对应事项的待办数量net.risesoft.pojo.Y9Page<TaskModel>pageByUserId(String tenantId, String positionId, Integer page, Integer rows)根据人员id获取用户的待办任务(分页)net.risesoft.pojo.Y9Page<TaskModel>searchListByUserIdAndProcessDefinitionKey(String tenantId, String userId, String processDefinitionKey, String searchTerm, Integer page, Integer rows)根据流程定义Key条件搜索待办件net.risesoft.pojo.Y9Page<TaskModel>searchListByUserIdAndSystemName(@NotBlank String tenantId, @NotBlank String userId, @NotBlank String systemName, String searchTerm, Integer page, Integer rows)根据系统英文名称条件搜索待办件
-
-
-
方法详细资料
-
countByPositionId
public net.risesoft.pojo.Y9Result<Long> countByPositionId(String tenantId, String positionId)
根据岗位id获取待办数量- 指定者:
countByPositionId在接口中ProcessTodoApi- 参数:
tenantId- 租户idpositionId- 岗位id- 返回:
Y9Result<Long>通用请求返回对象 - data 是待办数量- 从以下版本开始:
- 9.6.6
-
getCountByUserIdAndProcessDefinitionKey
public net.risesoft.pojo.Y9Result<Y9FlowableCountModel> getCountByUserIdAndProcessDefinitionKey(@RequestParam String tenantId, @RequestParam String userId, @RequestParam String processDefinitionKey)
根据人员id,流程定义Key获取对应事项的办件统计(包括待办件,在办件,办结件)- 指定者:
getCountByUserIdAndProcessDefinitionKey在接口中ProcessTodoApi- 参数:
tenantId- 租户IduserId- 人员IdprocessDefinitionKey- 流程定义Key- 返回:
Y9Result<Y9FlowableCountModel>通用请求返回对象 - data 是办件统计- 从以下版本开始:
- 9.6.6
-
getCountByUserIdAndSystemName
public net.risesoft.pojo.Y9Result<Y9FlowableCountModel> getCountByUserIdAndSystemName(@RequestParam String tenantId, @RequestParam String userId, @RequestParam String systemName)
根据人员id,系统标识获取对应事项的办件统计(包括待办件,在办件,办结件)- 指定者:
getCountByUserIdAndSystemName在接口中ProcessTodoApi- 参数:
tenantId- 租户IduserId- 人员IdsystemName- 系统名称- 返回:
Y9Result<Y9FlowableCountModel>通用请求返回对象 - data 是办件统计- 从以下版本开始:
- 9.6.6
-
getListByUserIdAndProcessDefinitionKey
public net.risesoft.pojo.Y9Page<TaskModel> getListByUserIdAndProcessDefinitionKey(@RequestParam @NotBlank @NotBlank String tenantId, @RequestParam @NotBlank @NotBlank String userId, @RequestParam @NotBlank @NotBlank String processDefinitionKey, @RequestParam Integer page, @RequestParam Integer rows)
根据人员Id,流程定义Key获取用户的待办任务(分页)- 指定者:
getListByUserIdAndProcessDefinitionKey在接口中ProcessTodoApi- 参数:
tenantId- 租户IduserId- 人员IdprocessDefinitionKey- 流程定义Keypage- 页码rows- 行数- 返回:
Y9Page<TaskModel>通用请求返回对象 - rows 是待办任务列表- 从以下版本开始:
- 9.6.6
-
getListByUserIdAndSystemName
public net.risesoft.pojo.Y9Page<TaskModel> getListByUserIdAndSystemName(@RequestParam @NotBlank @NotBlank String tenantId, @RequestParam @NotBlank @NotBlank String userId, @RequestParam @NotBlank @NotBlank String systemName, @RequestParam Integer page, @RequestParam Integer rows)
根据人员Id,系统标识获取用户的待办任务(分页)- 指定者:
getListByUserIdAndSystemName在接口中ProcessTodoApi- 参数:
tenantId- 租户IduserId- 人员IdsystemName- 系统名称page- 页码rows- 行数- 返回:
Y9Page<TaskModel>通用请求返回对象 - rows 是待办任务列表- 从以下版本开始:
- 9.6.6
-
getTodoCountByPositionIdAndProcessDefinitionKey
public net.risesoft.pojo.Y9Result<Long> getTodoCountByPositionIdAndProcessDefinitionKey(@RequestParam String tenantId, @RequestParam String positionId, @RequestParam String processDefinitionKey)
根据岗位id,流程定义key获取对应事项的待办数量- 指定者:
getTodoCountByPositionIdAndProcessDefinitionKey在接口中ProcessTodoApi- 参数:
tenantId- 租户idpositionId- 岗位idprocessDefinitionKey- 流程定义key- 返回:
Y9Result<Long>通用请求返回对象 - data 是待办数量- 从以下版本开始:
- 9.6.6
-
getTodoCountByUserIdAndSystemName
public net.risesoft.pojo.Y9Result<Long> getTodoCountByUserIdAndSystemName(@RequestParam String tenantId, @RequestParam String userId, @RequestParam String systemName)
根据人员id,系统标识获取对应事项的待办数量- 指定者:
getTodoCountByUserIdAndSystemName在接口中ProcessTodoApi- 参数:
tenantId- 租户IduserId- 人员IdsystemName- 系统名称- 返回:
Y9Result<Long>通用请求返回对象 - data 是待办数量- 从以下版本开始:
- 9.6.6
-
pageByUserId
public net.risesoft.pojo.Y9Page<TaskModel> pageByUserId(@RequestParam String tenantId, @RequestParam String positionId, @RequestParam Integer page, @RequestParam Integer rows)
根据人员id获取用户的待办任务(分页)- 指定者:
pageByUserId在接口中ProcessTodoApi- 参数:
tenantId- 租户IdpositionId- 岗位Idpage- 页码rows- 行数- 返回:
Y9Page<TaskModel>通用请求返回对象 - rows 是待办任务列表- 从以下版本开始:
- 9.6.6
-
searchListByUserIdAndProcessDefinitionKey
public net.risesoft.pojo.Y9Page<TaskModel> searchListByUserIdAndProcessDefinitionKey(@RequestParam String tenantId, @RequestParam String userId, @RequestParam String processDefinitionKey, String searchTerm, @RequestParam Integer page, @RequestParam Integer rows)
根据流程定义Key条件搜索待办件- 指定者:
searchListByUserIdAndProcessDefinitionKey在接口中ProcessTodoApi- 参数:
tenantId- 租户IduserId- 人员IdprocessDefinitionKey- 流程定义KeysearchTerm- 搜索词page- 页码rows- 行数- 返回:
Y9Page<TaskModel>通用请求返回对象 - rows 是待办任务列表- 从以下版本开始:
- 9.6.6
-
searchListByUserIdAndSystemName
public net.risesoft.pojo.Y9Page<TaskModel> searchListByUserIdAndSystemName(@RequestParam @NotBlank @NotBlank String tenantId, @RequestParam @NotBlank @NotBlank String userId, @RequestParam @NotBlank @NotBlank String systemName, String searchTerm, @RequestParam Integer page, @RequestParam Integer rows)
根据系统英文名称条件搜索待办件- 指定者:
searchListByUserIdAndSystemName在接口中ProcessTodoApi- 参数:
tenantId- 租户IduserId- 人员IdsystemName- 系统英文名称searchTerm- 搜索词page- 页码rows- 行数- 返回:
Y9Page<TaskModel>通用请求返回对象 - rows 是待办任务列表- 从以下版本开始:
- 9.6.6
-
-