jiangqs
2023-06-06 92da9546e1b37b06f78671b34389b1dec9dfadfc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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);
 
 
}