From 9dbb6c26c81e94e8f969805b40b0e183bf306f83 Mon Sep 17 00:00:00 2001
From: mitao <2763622819@qq.com>
Date: 星期一, 10 三月 2025 13:55:26 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/dev-1.0.1' into dev-1.0.1

---
 ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/service/ICustomConfigService.java |   56 +++++++++++++++++++++++++++++++++++++++++++++++++++++---
 1 files changed, 53 insertions(+), 3 deletions(-)

diff --git a/ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/service/ICustomConfigService.java b/ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/service/ICustomConfigService.java
index 47396ef..3a80353 100644
--- a/ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/service/ICustomConfigService.java
+++ b/ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/service/ICustomConfigService.java
@@ -2,10 +2,10 @@
 
 import com.baomidou.mybatisplus.extension.service.IService;
 import com.ruoyi.system.api.domain.CustomConfig;
-import com.ruoyi.system.domain.dto.MgtAfterSaleSettingDTO;
+import com.ruoyi.system.api.domain.dto.MgtAfterSaleSettingDTO;
 import com.ruoyi.system.domain.dto.PointsConfigDTO;
 import com.ruoyi.system.domain.vo.CustomConfigVO;
-import java.util.List;
+import com.ruoyi.system.domain.vo.WishSettingVO;
 
 /**
  * <p>
@@ -30,7 +30,7 @@
      *
      * @return List<CustomConfig>
      */
-    List<CustomConfigVO> getPointsConfig();
+    PointsConfigDTO getPointsConfig();
 
     /**
      * 获取订单说明设置
@@ -46,5 +46,55 @@
      */
     void saveOrderDescription(String description);
 
+    /**
+     * 售后设置
+     *
+     * @param dto 售后设置对象
+     */
     void saveAfterSaleSetting(MgtAfterSaleSettingDTO dto);
+
+    /**
+     * 获取售后设置
+     *
+     * @return List<CustomConfigVO>
+     */
+    MgtAfterSaleSettingDTO getAfterSaleSetting();
+
+    /**
+     * 保存客服电话
+     *
+     * @param phone 客服电话
+     */
+    void updateServicePhone(String phone);
+
+    /**
+     * 获取客服电话
+     *
+     * @return 客服电话
+     */
+    String getServicePhone();
+
+    /**
+     * 删除客户电话
+     *
+     * @param phone 客服电话
+     */
+    void deleteServicePhone(String phone);
+
+    /**
+     * 获取心愿求购设置
+     *
+     * @return
+     */
+    WishSettingVO getWishSetting();
+
+    /**
+     * 保存心愿求购设置
+     *
+     * @param vo 保存心愿求购设置
+     */
+    void saveWishDescription(WishSettingVO vo);
+
+    void saveRefundOfDeposit(String refundOfDeposit);
+
 }

--
Gitblit v1.7.1