admin
2024-07-03 158b3be9024917bc5798486777dead4dd167abc7
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
package com.taoke.autopay.service;
 
import com.taoke.autopay.dto.WXAppInfoDto;
import com.taoke.autopay.entity.SystemConfig;
import com.taoke.autopay.entity.SystemConfigKeyEnum;
 
/**
 * @author hxh
 * @title: SystemConfigService
 * @description: 系统配置服务
 * @date 2024/6/28 17:48
 */
public interface SystemConfigService {
 
    public WXAppInfoDto getWxAppInfo();
 
    public WXAppInfoDto getWxAppInfoCache();
 
    public SystemConfig get(SystemConfigKeyEnum key);
 
    public SystemConfig getCache(SystemConfigKeyEnum key);
 
    public String getValue(SystemConfigKeyEnum key);
 
    public String getValueCache(SystemConfigKeyEnum key);
 
    public void clearCache();
 
    public void setValue(SystemConfigKeyEnum key, String val);
 
 
}