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
package com.iailab.module.data.http.service.impl;
 
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.iailab.framework.common.page.PageData;
import com.iailab.framework.common.service.impl.BaseServiceImpl;
import com.iailab.module.data.http.entity.HttpApiEntity;
import com.iailab.module.data.http.entity.HttpApiEntity;
import com.iailab.module.data.http.dao.HttpApiDao;
import com.iailab.module.data.http.service.HttpApiService;
import org.apache.commons.lang3.StringUtils;
import org.springframework.stereotype.Service;
 
import java.util.List;
import java.util.Map;
 
@Service
public class HttpApiServiceImpl extends BaseServiceImpl<HttpApiDao, HttpApiEntity> implements HttpApiService {
    @Override
    public HttpApiEntity selectXstHttpTagApi() {
        return baseDao.selectOne(new QueryWrapper<HttpApiEntity>().eq("code","xstHttpTag"));
    }
 
    @Override
    public HttpApiEntity get(String id) {
        return baseDao.selectById(id);
    }
 
 
    @Override
    public HttpApiEntity getByCode(String code) {
        return baseDao.selectOne(new QueryWrapper<HttpApiEntity>().eq("code", code));
    }
 
    @Override
    public PageData<HttpApiEntity> page(Map<String, Object> params) {
        IPage<HttpApiEntity> page = baseDao.selectPage(
                getPage(params, "create_time", false),
                getWrapper(params)
        );
 
        return getPageData(page, HttpApiEntity.class);
    }
 
    @Override
    public List<HttpApiEntity> list() {
        List<HttpApiEntity> page = baseDao.selectList(new QueryWrapper<>());
        return page;
    }
 
    private QueryWrapper<HttpApiEntity> getWrapper(Map<String, Object> params){
        String name = (String)params.get("name");
        QueryWrapper<HttpApiEntity> wrapper = new QueryWrapper<>();
        wrapper.eq(StringUtils.isNotBlank(name), "name", name);
        return wrapper;
    }
}