xin
2025-10-17 ab0637e981ab4c85120ccde35ee24ec4abbe3e24
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.oying.modules.pc.product.service;
 
import com.oying.modules.pc.product.domain.dto.ProductCreateRequest;
import com.oying.modules.pc.product.domain.enums.ProductCreationType;
 
public interface ProductCreationStrategy {
 
    ProductCreationType getType(); // 每个策略知道自己处理的类型
 
    void create(ProductCreateRequest request);
 
    boolean supports(ProductCreationType type);
 
}