dongyukun
2024-11-05 849c3bfad21a3821f303413f82cda2d8d4d27733
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
package com.iailab.module.data.dev.service.impl;
 
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.iailab.framework.common.constant.Constant;
import com.iailab.framework.common.page.PageData;
import com.iailab.framework.common.service.impl.BaseServiceImpl;
import com.iailab.framework.common.util.object.ConvertUtils;
import com.iailab.module.data.dev.dao.DevLogDao;
import com.iailab.module.data.dev.dto.DevLogDTO;
import com.iailab.module.data.dev.entity.DevLogEntity;
import com.iailab.module.data.dev.service.DevLogService;
import org.apache.commons.lang3.StringUtils;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
 
import java.util.Arrays;
import java.util.List;
import java.util.Map;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2024年03月07日
 */
@Service
public class DevLogServiceImpl extends BaseServiceImpl<DevLogDao, DevLogEntity> implements DevLogService {
 
    @Override
    public PageData<DevLogDTO> page(Map<String, Object> params) {
        IPage<DevLogEntity> page = baseDao.selectPage(
                getPage(params, Constant.CREATE_DATE, false),
                getWrapper(params)
        );
        return getPageData(page, DevLogDTO.class);
    }
 
    @Override
    public List<DevLogDTO> list(Map<String, Object> params) {
        QueryWrapper<DevLogEntity> queryWrapper = getWrapper(params);
        queryWrapper.orderByDesc(Constant.CREATE_DATE);
        List<DevLogEntity> list = baseDao.selectList(queryWrapper);
        return ConvertUtils.sourceToTarget(list, DevLogDTO.class);
    }
 
    @Override
    public DevLogDTO get(String id) {
        DevLogEntity entity = baseDao.selectById(id);
 
        return ConvertUtils.sourceToTarget(entity, DevLogDTO.class);
    }
 
    private QueryWrapper<DevLogEntity> getWrapper(Map<String, Object> params){
        String code = (String)params.get("code");
        String location = (String)params.get("location");
        Integer status = params.get("status") == null ? null : Integer.parseInt(params.get("status").toString());
 
        QueryWrapper<DevLogEntity> wrapper = new QueryWrapper<>();
        wrapper.like(StringUtils.isNotBlank(code), "code", code)
                .like(StringUtils.isNotBlank(location), "location", location)
                .eq(status != null, "status", status);
 
        return wrapper;
    }
 
    @Override
    public void save(DevLogDTO dto) {
        DevLogEntity entity = ConvertUtils.sourceToTarget(dto, DevLogEntity.class);
 
        insert(entity);
    }
 
    @Override
    public void update(DevLogDTO dto) {
        DevLogEntity entity = ConvertUtils.sourceToTarget(dto, DevLogEntity.class);
        updateById(entity);
    }
 
    @Override
    @Transactional(rollbackFor = Exception.class)
    public void delete(String[] ids) {
        baseDao.deleteBatchIds(Arrays.asList(ids));
    }
}