package customutil.proxy.staticProxy.interfaceModel; /** * @author EBU7-dev1-ayh * @create 2021/11/25 0025 12:06 */ public class customerImpl implements IOrderInterface { @Override public String order(String foodName) { System.out.println("顾客下单。。。"); return "已经下单了" + foodName; } }