From bfddfbc26cac79e28149cfd7a3d3c63c623a39ef Mon Sep 17 00:00:00 2001
From: zepengdev <lzpsmith@outlook.com>
Date: Tue, 30 Sep 2025 11:46:24 +0800
Subject: [PATCH] fix: 调整审批功能比并怎加价格更新接口

---
 oying-system/src/main/java/com/oying/modules/pc/product/service/ProductMerchantService.java |   13 +++++++++++--
 1 files changed, 11 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..7efa6de 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
@@ -1,14 +1,23 @@
 package com.oying.modules.pc.product.service;
 
+import com.oying.modules.pc.product.domain.ProductAudit;
 import com.oying.modules.pc.product.domain.dto.ProductMerchantCreateRequest;
 import com.oying.modules.pc.product.domain.dto.ProductMerchantUpdateRequest;
+import com.oying.modules.pc.product.domain.dto.ProductPriceUpdateRequest;
+import com.oying.modules.pc.product.domain.enums.ProductAuditTypeEnum;
+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 createWithAudit(ProductMerchantCreateRequest request);
+    void submitToAudit(Long productId, ProductAuditTypeEnum productAuditType);
+    void update(ProductMerchantUpdateRequest request);
+    void updatePrice(ProductPriceUpdateRequest request);
+    void updateImages(ProductMerchantUpdateRequest request);
+    void updateLabels(ProductMerchantUpdateRequest request);
     void batchDelete(List<Long> ids);
     void putOnShelf(Long productId);
     void takeOffShelf(Long productId);

--
Gitblit v1.9.3