hechunping 6 месяцев назад
Родитель
Сommit
c6e8dee36b

+ 0 - 22
src/main/java/com/xynet/marketing/service/factory/plus/PlusFactory.java

@@ -1,22 +0,0 @@
-package com.xynet.marketing.service.factory.plus;
-
-
-
-import com.xynet.marketing.utils.R;
-
-import java.util.Map;
-
-/**
- * <p>
- *
- * </p>
- *
- * @author hechunping
- * @since 2024/4/17
- */
-public interface PlusFactory {
-    String save(Map<String,Object> param);
-
-
-
-}

+ 0 - 15
src/main/java/com/xynet/marketing/service/factory/plus/impl/base/PlusFactoryBase.java

@@ -1,15 +0,0 @@
-package com.xynet.marketing.service.factory.plus.impl.base;
-
-import com.xynet.marketing.service.factory.plus.PlusFactory;
-import com.xynet.marketing.utils.R;
-import org.springframework.stereotype.Component;
-
-import java.util.Map;
-
-@Component
-public class PlusFactoryBase implements PlusFactory {
-    @Override
-    public String save(Map<String, Object> param) {
-        return "这个是基础版本!!!";
-    }
-}

+ 0 - 15
src/main/java/com/xynet/marketing/service/factory/plus/impl/v2/PlusFactoryV2.java

@@ -1,15 +0,0 @@
-package com.xynet.marketing.service.factory.plus.impl.v2;
-
-import com.xynet.marketing.service.factory.plus.PlusFactory;
-import com.xynet.marketing.utils.R;
-import org.springframework.stereotype.Component;
-
-import java.util.Map;
-
-@Component
-public class PlusFactoryV2 implements PlusFactory {
-    @Override
-    public String save(Map<String, Object> param) {
-        return "这个是V2版本";
-    }
-}