类 CustomHistoricVariableServiceImpl
- java.lang.Object
-
- net.risesoft.service.impl.CustomHistoricVariableServiceImpl
-
- 所有已实现的接口:
CustomHistoricVariableService
@Transactional(readOnly=true) @Service("customHistoricVariableService") public class CustomHistoricVariableServiceImpl extends Object implements CustomHistoricVariableService- 作者:
- qinman, zhangchongjie
- Date:
- 2022/12/30
-
-
构造器概要
构造器 构造器 说明 CustomHistoricVariableServiceImpl()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 org.flowable.variable.api.history.HistoricVariableInstancegetByProcessInstanceIdAndVariableName(String processInstanceId, String variableName, String year)Description: 根据流程实例Id和流程变量的Key,获取历史流程变量的值org.flowable.variable.api.history.HistoricVariableInstancegetByTaskIdAndVariableName(String taskId, String variableName, String year)Description: 根据流程实例Id和流程变量的Key,获取历史任务变量的值Map<String,Object>getVariables(String tenantId, String processInstanceId, Collection<String> keys)根据流程实例Id,获取指定的流程变量List<org.flowable.variable.api.history.HistoricVariableInstance>listByProcessInstanceId(String processInstanceId)根据流程实例Id,获取历史流程变量集合List<org.flowable.variable.api.history.HistoricVariableInstance>listByTaskId(String taskId)根据流程实例Id,获取历史任务变量的值集合
-
-
-
方法详细资料
-
getByProcessInstanceIdAndVariableName
public org.flowable.variable.api.history.HistoricVariableInstance getByProcessInstanceIdAndVariableName(String processInstanceId, String variableName, String year)
从接口复制的说明:CustomHistoricVariableServiceDescription: 根据流程实例Id和流程变量的Key,获取历史流程变量的值
-
getByTaskIdAndVariableName
public org.flowable.variable.api.history.HistoricVariableInstance getByTaskIdAndVariableName(String taskId, String variableName, String year)
从接口复制的说明:CustomHistoricVariableServiceDescription: 根据流程实例Id和流程变量的Key,获取历史任务变量的值- 指定者:
getByTaskIdAndVariableName在接口中CustomHistoricVariableService- 返回:
-
getVariables
public Map<String,Object> getVariables(String tenantId, String processInstanceId, Collection<String> keys)
从接口复制的说明:CustomHistoricVariableService根据流程实例Id,获取指定的流程变量- 指定者:
getVariables在接口中CustomHistoricVariableService- 返回:
-
listByProcessInstanceId
public List<org.flowable.variable.api.history.HistoricVariableInstance> listByProcessInstanceId(String processInstanceId)
从接口复制的说明:CustomHistoricVariableService根据流程实例Id,获取历史流程变量集合- 指定者:
listByProcessInstanceId在接口中CustomHistoricVariableService- 返回:
-
listByTaskId
public List<org.flowable.variable.api.history.HistoricVariableInstance> listByTaskId(String taskId)
从接口复制的说明:CustomHistoricVariableService根据流程实例Id,获取历史任务变量的值集合- 指定者:
listByTaskId在接口中CustomHistoricVariableService- 返回:
-
-