From 5b237740ab4ef64bc95faa2ebd9af5f3671e4453 Mon Sep 17 00:00:00 2001 From: zepengdev <lzpsmith@outlook.com> Date: Wed, 30 Jul 2025 10:49:28 +0800 Subject: [PATCH] feat: 商户端的商品查询增加价格排序 --- 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