zmc
2023-11-23 3ba74e7692143fd6dcf4dd885f80f95dfef8387e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.flightfeather.monitor.service;
 
import com.flightfeather.monitor.domain.ds1.entity.RiskValue;
import com.flightfeather.monitor.pojo.RiskValuePojo;
 
import java.util.List;
 
public interface RiskValueService {
    /**
     * 根据站点名字(可选值),月份,类型来返回风险值
     * @param mnCode
     * @param month
     * @param type
     * @return
     */
    List<RiskValuePojo> queryRiskDataByMonth(String mnCode, String month, String type);
}