package com.highdatas.mdm.service.act;

import org.springframework.stereotype.Service;

import java.util.HashMap;

/**
 * @author kimi
 * @description
 * @date 2019-12-11 15:53
 */

@Service
public interface IdentityService  extends BaseService{
    public String startProcess(String businssId, String key);
    public String startProcess(String businssId, String key, String workflowStall, HashMap<String, Object> variables);
}