You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
616 B
16 lines
616 B
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;
|
|
}
|
|
|