From 3c9e545c80af5515264f28dd60c46b1147281581 Mon Sep 17 00:00:00 2001
From: zepengdev <lzpsmith@outlook.com>
Date: Wed, 17 Sep 2025 20:17:33 +0800
Subject: [PATCH] docs(ProductInventoryService):给类中方法添加注释
---
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