zhou zhou
昨天 a3b3e3ac062d8ac4c1d66d7b2a992720ea5e7ca2
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);
}