Junjie
2026-04-27 e4e91b46d0ce781e7dc87dcdf0d2909b01911d4b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.zy.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.zy.system.entity.Config;
 
public interface ConfigService extends IService<Config> {
 
    String getConfigValue(String code, String defaultValue);
 
    long getConfigLongValue(String code, long defaultValue);
 
    boolean saveConfigValue(String code, String value);
 
    void refreshSystemConfigCache();
}