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.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);
 
}