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;
| }
|
|