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
package com.iailab.module.mcs.service.impl;
 
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.iailab.framework.common.page.PageData;
import com.iailab.framework.common.service.impl.CrudServiceImpl;
import com.iailab.common.utils.Constant;
import com.iailab.framework.common.util.object.ConvertUtils;
import com.iailab.common.utils.DateUtils;
import com.iailab.module.mcs.dao.StModelRunlogDao;
import com.iailab.module.mcs.dto.StModelRunlogDTO;
import com.iailab.module.mcs.entity.StModelRunlogEntity;
import com.iailab.module.mcs.service.StModelRunlogService;
import org.apache.commons.lang3.StringUtils;
import org.springframework.stereotype.Service;
import org.springframework.util.CollectionUtils;
 
import javax.annotation.Resource;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
 
/**
 * 运行日志表
 *
 * @author lirm ${email}
 * @since 1.0.0 2023-06-21
 */
@Service
public class StModelRunlogServiceImpl extends CrudServiceImpl<StModelRunlogDao, StModelRunlogEntity, StModelRunlogDTO> implements StModelRunlogService {
 
    @Resource
    private StModelRunlogDao runlogDao;
    
    @Override
    public QueryWrapper<StModelRunlogEntity> getWrapper(Map<String, Object> params){
        String modelCode = (String)params.get("modelCode");
        String modelName = (String)params.get("modelName");
 
        QueryWrapper<StModelRunlogEntity> wrapper = new QueryWrapper<>();
        wrapper.like(StringUtils.isNotBlank(modelCode), "model_code", modelCode);
        wrapper.like(StringUtils.isNotBlank(modelName), "model_name", modelName);
 
        return wrapper;
    }
 
    @Override
    public List<StModelRunlogDTO> getLastFxLog(Integer limit) {
        Map<String, Object> params = new HashMap<>(1);
        params.put("runType", "separation_control");
        params.put("limit", limit == null ? 5 : limit);
        return runlogDao.getLastLog(params);
    }
    
    @Override
    public List<StModelRunlogDTO> getLastJyLog(Integer limit) {
        Map<String, Object> params = new HashMap<>(1);
        params.put("runType", "dosing_control");
        params.put("limit", limit == null ? 5 : limit);
        return runlogDao.getLastLog(params);
    }
 
    @Override
    public void cleanRunlogTask(Map<String, Date> tMap) {
        runlogDao.cleanRunlogTask(tMap);
    }
 
    @Override
    public PageData<StModelRunlogDTO> queryPage(Map<String, Object> params) {
        long curPage = 1;
        long limit = 10;
 
        if(params.get(Constant.PAGE) != null){
            curPage = Long.parseLong((String)params.get(Constant.PAGE));
        }
        if(params.get(Constant.LIMIT) != null){
            limit = Long.parseLong((String)params.get(Constant.LIMIT));
        }
 
        IPage<StModelRunlogEntity> page = baseDao.queryList(new Page<>(curPage, limit), params);
        return getPageData(page, StModelRunlogDTO.class);
    }
 
    @Override
    public List<StModelRunlogDTO> listAll(Map<String, Object> params) {
        return runlogDao.listAll(params);
    }
 
    @Override
    public void add(StModelRunlogDTO dto) {
        StModelRunlogEntity entity = ConvertUtils.sourceToTarget(dto, StModelRunlogEntity.class);
        baseDao.insert(entity);
    }
 
    @Override
    public void migrationModelRunlog(Map<String, Date> tMap) {
        List<StModelRunlogEntity> list = runlogDao.selectList(getDateWrapper(tMap));
        if (CollectionUtils.isEmpty(list)){
            return;
        }
        runlogDao.migrationModelRunlog(list);
        runlogDao.delete(getDateWrapper(tMap));
    }
 
    public QueryWrapper<StModelRunlogEntity> getDateWrapper(Map<String, Date> params) {
        String startDate = DateUtils.format(params.get("startdate"),DateUtils.DATE_TIME_PATTERN);
        String endDate = DateUtils.format(params.get("enddate"),DateUtils.DATE_TIME_PATTERN);
 
        QueryWrapper<StModelRunlogEntity> wrapper = new QueryWrapper<>();
        wrapper.ge(StringUtils.isNotBlank(startDate), "run_time", startDate);
        wrapper.le(StringUtils.isNotBlank(endDate), "run_time", endDate);
        return wrapper;
    }
 
}