lodsve.workflow.repository.FlowNodeRepository Maven / Gradle / Ivy
/*
* Copyright (C) 2018 Sun.Hao
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package lodsve.workflow.repository;
import java.util.List;
import lodsve.workflow.domain.FlowNode;
import org.springframework.data.repository.query.Param;
import org.springframework.stereotype.Repository;
/**
* .
*
* @author sunhao([email protected])
* @version V1.0, 2015-11-18 14:19
*/
@Repository
public interface FlowNodeRepository {
/**
* 通过流程id获取流程节点
*
* @param flowId 流程id
* @return
*/
List findByFlowId(@Param("flowId") Long flowId);
/**
* 通过流程id获取流程节点
*
* @param flowIds 流程id
* @return
*/
List loadByFlowIds(@Param("flowIds") List flowIds);
/**
* 批量保存流程节点
*
* @param flowNodes 流程节点
*/
void saveFlowNodes(List flowNodes);
/**
* 获得流程当前节点
*
* @param processInstanceId 流程实例ID
* @return 当前节点
*/
FlowNode findCurrentNode(@Param("processInstanceId") Long processInstanceId);
}