package J20250721; /** * @author WanJl * @version 1.0 * @title Flyable * @description * @create 2025/7/21 */ public interface Flyable { void fly(String s); }