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
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.DeviceHealthStateDao;
import com.iailab.module.device.dto.DeviceHealthStateDTO;
import com.iailab.module.device.entity.DeviceHealthStateEntity;
import com.iailab.module.device.service.DeviceInfoService;
import com.iailab.module.device.service.DeviceHealthEvaluateService;
import com.iailab.module.device.service.DeviceHealthStateService;
import org.apache.commons.lang3.StringUtils;
import javax.annotation.Resource;
import org.springframework.stereotype.Service;
 
import java.util.Map;
 
/**
 * 设备健康状态表
 *
 * @author lirm ${email}
 * @since 1.0.0 2024-05-22
 */
@Service
public class DeviceHealthStateServiceImpl extends CrudServiceImpl<DeviceHealthStateDao, DeviceHealthStateEntity, DeviceHealthStateDTO> implements DeviceHealthStateService {
 
    @Resource
    DeviceHealthEvaluateService deviceHealthEvaluateService;
 
    @Resource
    DeviceInfoService deviceInfoService;
 
    @Override
    public QueryWrapper<DeviceHealthStateEntity> getWrapper(Map<String, Object> params){
        String id = (String)params.get("id");
 
        QueryWrapper<DeviceHealthStateEntity> wrapper = new QueryWrapper<>();
        wrapper.eq(StringUtils.isNotBlank(id), "id", id);
 
        return wrapper;
    }
 
 
    @Override
    public void insertHealthState(Map<String, Object> tMap) {
        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;
        tMap.put("total_count",total_count);
        int id = baseDao.getId();
        if(id == 0){
            baseDao.insertHealthState(tMap);
        }else{
            tMap.put("id",id);
            baseDao.updateHealthState(tMap);
        }
    }
 
}