xin
2 days ago b2f4f195c19b87ab9b19be919d0ad8d8c0a2e3c8
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);
 
}