Sofa.java 231 字节
Newer Older
ツぃ☆ve芜情's avatar
ツぃ☆ve芜情 已提交
1 2 3 4 5 6 7 8 9 10 11
package com.ice.creation.AbstractFactory.product;

/**
 * @author ice
 * @blog https://blog.csdn.net/dreaming_coder
 * @description
 * @create 2021-10-13 09:13:53
 */
public abstract class Sofa {
    public abstract void info();
}