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
package com.iailab.module.param.service.impl;
 
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.iailab.framework.common.service.impl.BaseServiceImpl;
import com.iailab.framework.common.util.object.ConvertUtils;
import com.iailab.module.param.dao.PageParamDao;
import com.iailab.module.param.dto.PageParamDTO;
import com.iailab.module.param.entity.PageParamEntity;
import com.iailab.module.param.service.PageParmService;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
/**
 * @author Jay
 */
@Service
public class PageParamServiceImpl extends BaseServiceImpl<PageParamDao, PageParamEntity> implements PageParmService {
    @Override
    public String selectValue(String page, String paramCode) {
 
        String value = baseDao.selectOne(
                new QueryWrapper<PageParamEntity>()
                .eq("page",page)
                .eq("param_code",paramCode)
        )==null?"":baseDao.selectOne(
                new QueryWrapper<PageParamEntity>()
                        .eq("page",page)
                        .eq("param_code",paramCode)
        ).getParamValue();
 
        return value;
    }
 
    @Override
    public List<PageParamDTO> selectPageParamByPage(String page) {
        QueryWrapper<PageParamEntity> queryWrapper = new QueryWrapper<PageParamEntity>()
                .eq("page", page)
                .orderByAsc("id");
        return ConvertUtils.sourceToTarget(baseDao.selectList(queryWrapper), PageParamDTO.class);
    }
}