彭雪彬
2 days ago f63e67acf46f345a5102840cc12eda17c0357fe5
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);
 
}