package com.ruoyi.system.service.config;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.ruoyi.system.domain.dto.*;
|
import com.ruoyi.system.domain.pojo.config.CustomConfig;
|
import com.ruoyi.system.domain.vo.MgtCustomConfigVo;
|
|
/**
|
* @ClassName CustomConfigService
|
* @Description TODO
|
* @Author jqs
|
* @Date 2023/6/7 16:32
|
* @Version 1.0
|
*/
|
public interface CustomConfigService extends IService<CustomConfig> {
|
|
/**
|
* @description 通过key获取系统自定义配置
|
* @author jqs
|
* @date 2023/6/6 11:55
|
* @param key
|
* @return CustomConfig
|
*/
|
CustomConfig getByKey(String key);
|
|
|
/**
|
* @description 修改客服号码
|
* @author jqs
|
* @date 2023/6/6 11:53
|
* @param mgtServiceMobileEditDto
|
* @return void
|
*/
|
void editServiceMobile( MgtServiceMobileEditDto mgtServiceMobileEditDto);
|
|
/**
|
* @description 平台获取自定义配置
|
* @author jqs
|
* @date 2023/6/7 15:02
|
* @param
|
* @return MgtCustomConfigVo
|
*/
|
MgtCustomConfigVo getCustomConfig();
|
|
/**
|
* @description 修改其他设置
|
* @author jqs
|
* @date 2023/6/7 16:07
|
* @param mgtOtherConfigEditDto
|
* @return void
|
*/
|
void editOtherConfig(MgtOtherConfigEditDto mgtOtherConfigEditDto);
|
|
/**
|
* @description 修改合作商配置
|
* @author jqs
|
* @date 2023/6/7 16:41
|
* @param mgtShopConfigEditDto
|
* @return void
|
*/
|
void editShopConfig(MgtShopConfigEditDto mgtShopConfigEditDto);
|
|
/**
|
* @description 修改会员配置
|
* @author jqs
|
* @date 2023/6/7 17:16
|
* @param mgtMemberConfigEditDto
|
* @return void
|
*/
|
void editMemberConfig(MgtMemberConfigEditDto mgtMemberConfigEditDto);
|
|
|
}
|