zmc
2023-11-13 772a31df287d1b289f18f676e72f08b7133843ee
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);
}