package com.qianwen.core.tool.function; import org.springframework.lang.Nullable; @FunctionalInterface public interface CheckedFunction { @Nullable R apply(@Nullable T t) throws Throwable; }