1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.flightfeather.monitor.mapper;
|
| import com.flightfeather.monitor.domain.ds1.entity.RiskValue;
| import org.apache.ibatis.annotations.Mapper;
| import org.apache.ibatis.annotations.Select;
|
| import java.util.List;
|
| @Mapper
| public interface RiskAnalysisMapper {
|
| List<RiskValue> queryRiskDataByMonth(String siteName,String month, String type);
| }
|
|