package com.ruoyi.system.service.config;
|
|
import com.ruoyi.system.domain.dto.MgtServiceMobileEditDto;
|
import com.ruoyi.system.domain.pojo.config.CustomConfig;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
/**
|
* <p>
|
* 系统配置 服务类
|
* </p>
|
*
|
* @author jqs
|
* @since 2023-04-25
|
*/
|
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);
|
|
|
}
|