zmc
2023-11-13 c66ed91b47929f1fbb79afbf07db1f3387f92612
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.flightfeather.monitor.analysis.dust;
 
import com.flightfeather.monitor.service.AnalysisDataService;
import org.springframework.beans.factory.annotation.Autowired;
 
/**
 * 数据风险分析控制器
 */
public class RiskAnalysisController {
 
    @Autowired
    private AnalysisDataService analysisDataService;
}