zepengdev
2025-09-30 bfddfbc26cac79e28149cfd7a3d3c63c623a39ef
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.oying.modules.pc.product.events.handler;
 
import com.oying.modules.pc.product.domain.ProductAudit;
import com.oying.modules.pc.product.domain.enums.ProductAuditTypeEnum;
 
public interface ProductAuditVerdictHandler {
 
    // 判断当前处理器是否支持处理该类型的操作
    boolean supports(ProductAuditTypeEnum auditType);
 
    // 处理审核后的逻辑
    void handle(ProductAudit audit);
 
}