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.device.service.impl;
 
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.iailab.framework.common.service.impl.CrudServiceImpl;
import com.iailab.module.device.dao.DeviceAbnormalHistoryDao;
import com.iailab.module.device.dto.DeviceAbnormalHistoryDTO;
import com.iailab.module.device.entity.DeviceAbnormalHistoryEntity;
import com.iailab.module.device.service.DeviceAbnormalHistoryService;
import org.apache.commons.lang3.StringUtils;
import org.springframework.stereotype.Service;
 
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
/**
 * 异常设备历史表
 *
 * @author lirm ${email}
 * @since 1.0.0 2024-05-22
 */
@Service
public class DeviceAbnormalHistoryServiceImpl extends CrudServiceImpl<DeviceAbnormalHistoryDao, DeviceAbnormalHistoryEntity, DeviceAbnormalHistoryDTO> implements DeviceAbnormalHistoryService {
 
    @Override
    public QueryWrapper<DeviceAbnormalHistoryEntity> getWrapper(Map<String, Object> params){
        String id = (String)params.get("id");
        String endDate = (String)params.get("endDate");
 
        QueryWrapper<DeviceAbnormalHistoryEntity> wrapper = new QueryWrapper<>();
        wrapper.eq(StringUtils.isNotBlank(id), "id", id);
 
        return wrapper;
    }
 
 
    @Override
    public void insertHistory(Map<String, Object> tMap) {
        Map<String, Integer> map = new HashMap<>();
        int normal = Integer.parseInt(tMap.get("normal").toString());
        int common = Integer.parseInt(tMap.get("common").toString());
        int heavy = Integer.parseInt(tMap.get("heavy").toString());
        int serious = Integer.parseInt(tMap.get("serious").toString());
        int espSerious = Integer.parseInt(tMap.get("espSerious").toString());
        int total_count = normal + common + heavy + serious + espSerious;
        int abnormal_count = common + heavy + serious + espSerious;
        map.put("total_count",total_count);
        map.put("abnormal_count",abnormal_count);
        baseDao.insertHistory(map);
    }
 
    @Override
    public List<DeviceAbnormalHistoryDTO> getlist(Map<String, Object> params) {
        return baseDao.getlist(params);
    }
 
}