package com.qianwen.core.context; import java.util.function.Function; import org.springframework.lang.Nullable; public interface BladeContext { @Nullable String getRequestId(); @Nullable String getAccountId(); @Nullable String getTenantId(); @Nullable String get(String ctxKey); @Nullable T get(String ctxKey, Function function); }