From 0ab919187081583c07a9b7654050f6e8741628dc Mon Sep 17 00:00:00 2001
From: xin <1099200748@qq.com>
Date: Sat, 27 Sep 2025 23:13:16 +0800
Subject: [PATCH] 运费计算器

---
 oying-system/src/main/java/com/oying/modules/pc/store/service/StoreService.java |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/oying-system/src/main/java/com/oying/modules/pc/store/service/StoreService.java b/oying-system/src/main/java/com/oying/modules/pc/store/service/StoreService.java
index f5443f1..901a842 100644
--- a/oying-system/src/main/java/com/oying/modules/pc/store/service/StoreService.java
+++ b/oying-system/src/main/java/com/oying/modules/pc/store/service/StoreService.java
@@ -50,7 +50,7 @@
 
     boolean updateContactPhone(Long storeId, String contactPhone, Long version);
 
-    boolean updateAddress(Long storeId, String address, Long version);
+    boolean updateAddress(Long storeId, String address, Double longitude, Double latitude, Long version);
 
     boolean updateLocation(Long storeId, Double longitude, Double latitude, Long version);
 
@@ -64,6 +64,8 @@
 
     boolean updateDeliveryFee(Long storeId, BigDecimal deliveryFee, Long version);
 
+    boolean updatePackagingFee(Long storeId, BigDecimal packagingFee, Long version);
+
     boolean updateStatus(Long storeId, Integer status, Long version);
 
     boolean existsByIdAndMerchantId(Long storeId, Long merchantId);

--
Gitblit v1.9.3