chen.lin
4 天以前 79ce234f181a8fa5e3e02938520395243c82a5da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.vincent.rsf.server.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.vincent.rsf.framework.common.R;
import com.vincent.rsf.server.system.entity.Config;
 
public interface ConfigService extends IService<Config> {
 
    <T> T getVal(String key, Class<T> clazz);
 
    <T> boolean setVal(String key, T val);
 
    R modiftyStatus(Config config);
}