zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.changhong.epc.tenant.service.system;
 
import com.changhong.epc.bean.tenant.system.SystemConfig;
 
import java.util.List;
 
/**
 * 系统配置
 * @author yuezhw
 * @date 2017-10-17
 *
 */
public interface SystemConfigService {
 
    /**
     * 查询全部系统配置
     * @return List<SystemConfig>
     */
    List<SystemConfig> selectSytem();
    
    /**
     * 添加系统配置
     * @return Integer
     */
    Integer insert(List<SystemConfig> systemConfig);
    
    /**
     * 修改系统配置
     * @return Integer
     */
    Integer update(List<SystemConfig> systemConfig);
 
    /**
     * 根据groupKey查询相关配置
     * @param systemConfig
     * @return
     */
    List<SystemConfig> querySysConfigByGroupKey(SystemConfig systemConfig);
}