package aiyh.utils.function;
/**
* @author EBU7-dev1-ayh
* @create 2021/10/12 0012 14:17
* 获取顶级父类
*/
@FunctionalInterface
public interface VerifyParent<T> {
boolean verifyParent(T t);
}