admin
2020-06-20 0ab8a2ea521a838124f517daf4e61dee971a6d4c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ks.tool.bkz.service;
 
import com.ks.tool.bkz.entity.Config;
 
import java.util.List;
 
/**
 * 配置文件服务
 */
public interface ConfigService {
 
    /**
     * 获取客户端显示参数
     * @param client
     * @return
     */
    public List<Config> listByClient(int clientId);
 
 
 
 
}