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.
31 lines
886 B
31 lines
886 B
package irbs.riskExposure.service;
|
|
|
|
import io.sc.platform.flowable.controller.support.ProcessProperties;
|
|
import io.sc.platform.flowable.support.CompleteTaskResponse;
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
/**
|
|
* 流程服务处理
|
|
* @author dhb
|
|
*/
|
|
public interface RiskExposureProcessService {
|
|
|
|
/**
|
|
* 风险暴露分类发起流程提交
|
|
* @param taskId
|
|
* @param processProperties
|
|
* @return
|
|
* @throws Exception
|
|
*/
|
|
CompleteTaskResponse submitRiskExposure(String taskId, ProcessProperties processProperties) throws Exception;
|
|
|
|
/**
|
|
* 风险暴露分类调整流程提交
|
|
* @param taskId
|
|
* @param processProperties
|
|
* @return
|
|
* @throws Exception
|
|
*/
|
|
@Transactional
|
|
CompleteTaskResponse submitRiskExposureAdjust(String taskId, ProcessProperties processProperties) throws Exception;
|
|
}
|
|
|