From 0b37408e5f92f2c7f1dee8f4eb121db92a4edaa4 Mon Sep 17 00:00:00 2001
From: zepengdev <lzpsmith@outlook.com>
Date: Wed, 17 Sep 2025 19:39:30 +0800
Subject: [PATCH] fix: 调整店铺用户角色
---
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