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();
|
|
|
}
|