1
luofl
2025-03-10 74cf1cc5cf920c77a4a217a2ce2857103743fa9d
ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/service/ICustomConfigService.java
@@ -5,6 +5,7 @@
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,43 @@
     * @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);
    String getRefundOfDeposit();
}