houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
///**
// * Copyright (c) 2018 人人开源 All rights reserved.
// *
// * https://www.renren.io
// *
// * 版权所有,侵权必究!
// */
//
//package com.iailab.module.system.service.params;
//
//import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
//import com.baomidou.mybatisplus.core.metadata.IPage;
//import com.iailab.common.constant.Constant;
//import com.iailab.common.exception.ErrorCode;
//import com.iailab.common.exception.RenException;
//import com.iailab.common.page.PageData;
//import com.iailab.common.service.impl.BaseServiceImpl;
//import com.iailab.common.utils.ConvertUtils;
//import com.iailab.common.utils.JsonUtils;
//import com.iailab.modules.sys.dao.SysParamsDao;
//import com.iailab.modules.sys.dto.SysParamsDTO;
//import com.iailab.modules.sys.entity.SysParamsEntity;
//import com.iailab.modules.sys.redis.SysParamsRedis;
//import com.iailab.modules.sys.service.SysParamsService;
//import org.apache.commons.lang3.StringUtils;
//import org.springframework.beans.factory.annotation.Autowired;
//import org.springframework.stereotype.Service;
//import org.springframework.transaction.annotation.Transactional;
//
//import java.util.ArrayList;
//import java.util.Arrays;
//import java.util.List;
//import java.util.Map;
//
///**
// * 参数管理
// *
// * @author Mark sunlightcs@gmail.com
// * @since 1.0.0
// */
//@Service
//public class ParamsServiceImpl extends BaseServiceImpl<SysParamsDao, SysParamsEntity> implements SysParamsService {
//    @Autowired
//    private SysParamsRedis sysParamsRedis;
//
//    @Override
//    public PageData<SysParamsDTO> page(Map<String, Object> params) {
//        IPage<SysParamsEntity> page = baseDao.selectPage(
//            getPage(params, Constant.CREATE_DATE, false),
//            getWrapper(params)
//        );
//
//        return getPageData(page, SysParamsDTO.class);
//    }
//
//    @Override
//    public List<SysParamsDTO> list(Map<String, Object> params) {
//        List<SysParamsEntity> entityList = baseDao.selectList(getWrapper(params));
//
//        return ConvertUtils.sourceToTarget(entityList, SysParamsDTO.class);
//    }
//
//    private QueryWrapper<SysParamsEntity> getWrapper(Map<String, Object> params){
//        String paramCode = (String) params.get("paramCode");
//        String paramCodeList = (String) params.get("paramCodeList");
//        List<String> paramCodeArr = new ArrayList<>();
//        if (StringUtils.isNotBlank(paramCodeList)) {
//            paramCodeArr = Arrays.asList(paramCodeList.split(","));
//        }
//
//        QueryWrapper<SysParamsEntity> wrapper = new QueryWrapper<>();
//        wrapper.eq("param_type", 1);
//        wrapper.like(StringUtils.isNotBlank(paramCode), "param_code", paramCode);
//        wrapper.in(StringUtils.isNotBlank(paramCodeList), "param_code", paramCodeArr);
//
//        return wrapper;
//    }
//
//    @Override
//    public SysParamsDTO get(Long id) {
//        SysParamsEntity entity = baseDao.selectById(id);
//
//        return ConvertUtils.sourceToTarget(entity, SysParamsDTO.class);
//    }
//
//    @Override
//    @Transactional(rollbackFor = Exception.class)
//    public void save(SysParamsDTO dto) {
//        SysParamsEntity entity = ConvertUtils.sourceToTarget(dto, SysParamsEntity.class);
//        insert(entity);
//
//        sysParamsRedis.set(entity.getParamCode(), entity.getParamValue());
//    }
//
//    @Override
//    @Transactional(rollbackFor = Exception.class)
//    public void update(SysParamsDTO dto) {
//        SysParamsEntity entity = ConvertUtils.sourceToTarget(dto, SysParamsEntity.class);
//        updateById(entity);
//
//        sysParamsRedis.set(entity.getParamCode(), entity.getParamValue());
//    }
//
//    @Override
//    @Transactional(rollbackFor = Exception.class)
//    public void delete(Long[] ids) {
//        //删除Redis数据
//        List<String> paramCodeList = baseDao.getParamCodeList(ids);
//        String[] paramCodes = paramCodeList.toArray(new String[paramCodeList.size()]);
//        sysParamsRedis.delete(paramCodes);
//
//        //删除
//        deleteBatchIds(Arrays.asList(ids));
//    }
//
//    @Override
//    public String getValue(String paramCode) {
//        String paramValue = sysParamsRedis.get(paramCode);
//        if(paramValue == null){
//            paramValue = baseDao.getValueByCode(paramCode);
//
//            sysParamsRedis.set(paramCode, paramValue);
//        }
//        return paramValue;
//    }
//
//    @Override
//    public <T> T getValueObject(String paramCode, Class<T> clazz) {
//        String paramValue = getValue(paramCode);
//        if(StringUtils.isNotBlank(paramValue)){
//            return JsonUtils.parseObject(paramValue, clazz);
//        }
//
//        try {
//            return clazz.newInstance();
//        } catch (Exception e) {
//            throw new RenException(ErrorCode.PARAMS_GET_ERROR);
//        }
//    }
//
//    @Override
//    @Transactional(rollbackFor = Exception.class)
//    public int updateValueByCode(String paramCode, String paramValue) {
//        int count = baseDao.updateValueByCode(paramCode, paramValue);
//        sysParamsRedis.set(paramCode, paramValue);
//        return count;
//    }
//
//    @Override
//    public String getValueByCode(String paramCode) {
//        String paramValue = sysParamsRedis.get(paramCode);
//        if(paramValue == null){
//            paramValue = baseDao.getValueByCode(paramCode);
//
//            sysParamsRedis.set(paramCode, paramValue);
//        }
//        return paramValue;
//    }
//
//}