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