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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package com.changhong.epc.tenant.service.system.impl;
 
import com.changhong.epc.bean.tenant.system.SystemConfig;
import com.changhong.epc.tenant.mapper.tenant.system.SystemConfigMapper;
import com.changhong.epc.tenant.service.system.SystemConfigService;
import com.iemsoft.framework.cloud.core.tools.ObjectUtil;
import org.springframework.stereotype.Service;
 
import javax.annotation.Resource;
import java.util.List;
 
/**
 * 系统配置
 * @author yuezhw
 * @date 2017-10-17
 *
 */
@Service("SystemConfigServiceImpl")
public class SystemConfigServiceImpl implements SystemConfigService{
 
    @Resource
    private SystemConfigMapper systemConfigMapper;
    
    
    /**
     * 查询系统配置
     * @return List<SystemConfig>
     */
    @Override
    public List<SystemConfig> selectSytem() {
        return this.systemConfigMapper.selectSystem();
    }
 
    /**
     * 添加系统配置
     * @return Integer
     */
    @Override
    public Integer insert(List<SystemConfig> systemConfigs) {
        Integer count = 0;
        if(ObjectUtil.empty(systemConfigs)){
            return count;
        }
        for(SystemConfig syc: systemConfigs){
            count++;
            syc.initParam();
            this.systemConfigMapper.insert(syc);
        }
        return count;
    }
 
    /**
     * 修改全部系统配置
     * @return Integer
     */
    @Override
    public Integer update(List<SystemConfig> systemConfigs) {
        Integer count = 0;
        if(ObjectUtil.empty(systemConfigs)){
            return count;
        }
        for(SystemConfig syc: systemConfigs){
            count++;
            syc.updateIngParam();
            this.systemConfigMapper.updateByPrimaryKeySelective(syc);
        }
        return count;
    }
 
    @Override
    public List<SystemConfig> querySysConfigByGroupKey(SystemConfig systemConfig) {
        return this.systemConfigMapper.querySysConfigByGroupKey(systemConfig);
    }
 
}