zhou zhou
2 天以前 287a666e1b2bb155e86aa88ebace201d1e8a51f6
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);
}