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