feiyu02
2023-11-14 aa94ef4e1f060b184e6ea9fb37254b376a1eb60e
1
2
3
4
5
6
7
8
9
package com.flightfeather.monitor.service;
 
import com.flightfeather.monitor.domain.ds1.entity.RiskValue;
 
import java.util.List;
 
public interface RiskAnalysisService {
    List<RiskValue> queryRiskDataByMonth(String siteName,String month,String type);
}