From 4507dc1529562a2ab851d25a024fd8db4db9eb3d Mon Sep 17 00:00:00 2001
From: xin <1099200748@qq.com>
Date: Tue, 23 Sep 2025 14:52:00 +0800
Subject: [PATCH] Merge branch 'master' into xin
---
oying-system/src/main/java/com/oying/modules/pc/product/service/ProductMerchantService.java | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/oying-system/src/main/java/com/oying/modules/pc/product/service/ProductMerchantService.java b/oying-system/src/main/java/com/oying/modules/pc/product/service/ProductMerchantService.java
index dba1948..6ff27c7 100644
--- a/oying-system/src/main/java/com/oying/modules/pc/product/service/ProductMerchantService.java
+++ b/oying-system/src/main/java/com/oying/modules/pc/product/service/ProductMerchantService.java
@@ -2,15 +2,19 @@
import com.oying.modules.pc.product.domain.dto.ProductMerchantCreateRequest;
import com.oying.modules.pc.product.domain.dto.ProductMerchantUpdateRequest;
+import com.oying.modules.pc.product.events.ProductAuditVerdictEvent;
import java.util.List;
public interface ProductMerchantService {
- void create(Long storeId, ProductMerchantCreateRequest request);
- void update(Long storeId, ProductMerchantUpdateRequest request);
+ void create(ProductMerchantCreateRequest request);
+ void update(ProductMerchantUpdateRequest request);
+ void updateImages(ProductMerchantUpdateRequest request);
+ void updateLabels(ProductMerchantUpdateRequest request);
void batchDelete(List<Long> ids);
void putOnShelf(Long productId);
void takeOffShelf(Long productId);
+ void handleAuditVerdictEvent(ProductAuditVerdictEvent event);
}
--
Gitblit v1.9.3