From e16a9f6a4238ec02dc754be7b94639ad8af4e5a8 Mon Sep 17 00:00:00 2001 From: mitao <2763622819@qq.com> Date: 星期五, 07 三月 2025 18:42:07 +0800 Subject: [PATCH] 协议管理修改 --- ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/service/ICustomConfigService.java | 41 ++++++++++++++++++++++++++++++++++++++++- 1 files changed, 40 insertions(+), 1 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 eb30871..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,9 +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 com.ruoyi.system.domain.vo.WishSettingVO; /** * <p> @@ -58,4 +59,42 @@ * @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