package irbs.defaultManager.service; import io.sc.platform.flowable.controller.support.ProcessProperties; import io.sc.platform.flowable.support.CompleteTaskException; import io.sc.platform.flowable.support.CompleteTaskResponse; /** * 违约管理流程处理服务 * @author likunming * */ public interface DefaultProcessService { public CompleteTaskResponse cognizanceSubmit(String taskId, ProcessProperties processProperties) throws CompleteTaskException, Exception; public CompleteTaskResponse rebirthSubmit(String taskId, ProcessProperties processProperties) throws CompleteTaskException, Exception; }