双重预防项目-国泰新华二开定制版
huangzhen
2022-09-30 679dfe8a68fe56100e708f112c1060d661d7b136
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
package com.ruoyi.doublePrevention.service.baseService.impl;
 
import com.ruoyi.doublePrevention.entity.PreventRiskDangerInfo;
import com.ruoyi.doublePrevention.entity.dto.DataCountDangerResultRespDO;
import com.ruoyi.doublePrevention.repository.PreventRiskDangerInfoRepository;
import com.ruoyi.doublePrevention.repository.param.DataCountStartAndEndTimeParams;
import com.ruoyi.doublePrevention.service.baseService.PreventRiskDangerInfoService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
import java.util.Date;
import java.util.List;
 
@Service("PreventRiskDangerInfoService")
public class PreventRiskDangerInfoServiceImpl implements PreventRiskDangerInfoService {
 
    @Autowired
    private PreventRiskDangerInfoRepository preventRiskDangerInfoRepository;
 
    /**
     * 新增隐患上报
     * */
    @Override
    public int insertDangerInfo(PreventRiskDangerInfo dangerInfo) {
        return preventRiskDangerInfoRepository.insertDangerInfo(dangerInfo);
    }
 
    /**
     * 修改隐患上报
     * */
    @Override
    public int updateDangerInfo(PreventRiskDangerInfo dangerInfo) {
        return preventRiskDangerInfoRepository.updateDangerInfo(dangerInfo);
    }
 
    /**
     * 删除隐患上报
     */
    @Override
    public int deleteDangerInfo(Long id) {
        return preventRiskDangerInfoRepository.deleteDangerInfo(id);
    }
 
 
    /**
     * @description 统计时间段内所有、死亡、重伤、轻伤的隐患数量
     */
    @Override
    public DataCountDangerResultRespDO listDangerResultCountByTime(Date startTime, Date endTime, List<Long> depIds) {
        return preventRiskDangerInfoRepository.listDangerResultCountByTime(startTime,endTime,depIds);
    }
 
 
}