From 38213237cc11c9bd3f11b0fa69c56ef663049a4b Mon Sep 17 00:00:00 2001
From: zepengdev <lzpsmith@outlook.com>
Date: Fri, 29 Aug 2025 11:40:54 +0800
Subject: [PATCH] feat: 店铺地址和坐标合并

---
 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