package notification import "context" // DynamicRecipientResolver 定义后台通知动态接收人解析 Port。 type DynamicRecipientResolver interface { Resolve(ctx context.Context, targetKind string, targetID uint) ([]uint, error) }