jiangqs
2023-06-07 1fc05375474ca0393d6c29fd2ab1d182c65a3eaa
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package com.ruoyi.system.service.config;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.system.domain.dto.MgtMemberConfigEditDto;
import com.ruoyi.system.domain.dto.MgtOtherConfigEditDto;
import com.ruoyi.system.domain.dto.MgtServiceMobileEditDto;
import com.ruoyi.system.domain.dto.MgtShopConfigEditDto;
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);
}