admin
2024-06-30 b6fdf185c7e8fb1f06da0e609e39aecaef6b66f5
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
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 getValueCache(SystemConfigKeyEnum key);
 
    public void clearCache();
 
 
}