From 98933984fa1353d298a5117fb2a2d044fc51af93 Mon Sep 17 00:00:00 2001 From: rentaiming <806181662@qq.com> Date: 星期六, 22 六月 2024 13:18:36 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/service/ICustomConfigService.java | 38 +++++++++++++++++++++++++++++++++++--- 1 files changed, 35 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..edbfbd1 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,9 @@ 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; /** * <p> @@ -30,7 +29,7 @@ * * @return List<CustomConfig> */ - List<CustomConfigVO> getPointsConfig(); + PointsConfigDTO getPointsConfig(); /** * 获取订单说明设置 @@ -46,5 +45,38 @@ */ 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); } -- Gitblit v1.7.1