package com.qianwen.core.notify.executor; import java.util.List; import com.qianwen.core.context.task.TaskExecutionContext; import com.qianwen.core.context.task.TaskExecutorTypeEnum; public interface INotifyTaskService { List getNotifiedPartyList(String tenantId, String businessKey, String defaultNotifyType, List relatedPartyIds, TaskExecutorTypeEnum taskExecutorTypeEnum); List createNotifyExecutionContext(TaskExecutionContext taskExecutionContext); }