feiyu02
2023-10-19 f5d149a03739086d34c4dc2eb924bcf0e4330521
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.flightfeather.monitor.controller.dustexception;
 
 
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.CrossOrigin;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
@Slf4j
@RequestMapping("/dustAnalisys")
@CrossOrigin
@RestController
public class onlineAnalysisController {
 
    @Autowired
    private com.flightfeather.monitor.service.dustexception.onlineAnalysisService onlineAnalysisService;
 
    @GetMapping("/analysisData")
    public void get(){
 
    }
}