zmc
2023-11-13 772a31df287d1b289f18f676e72f08b7133843ee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.flightfeather.monitor.service.impl;
 
import com.flightfeather.monitor.domain.ds1.entity.RiskValue;
import com.flightfeather.monitor.mapper.RiskAnalysisMapper;
import com.flightfeather.monitor.service.RiskAnalysisService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
@Service
public class RiskAnalysisServiceImpl implements RiskAnalysisService {
    @Autowired
    private RiskAnalysisMapper riskAnalysisMapper;
 
    @Override
    public List<RiskValue> queryRiskDataByMonth(String siteName,String month,String type) {
        List<RiskValue> list = riskAnalysisMapper.queryRiskDataByMonth(siteName,month,type);
        return list;
    }
}