package com.common; /** * Intro: 购物车工厂 接口 * Author: zhangxutong * E-mail: mcxtzhang@163.com * Home Page: http://blog.csdn.net/zxt0601 * Created: 2017/5/12. * History: */ public interface ShopCartManagerFactory { ShopCartManager create(); }