zmc
2023-09-27 3543b001e3da2cb801d7dfa27b396db4edbfb740
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.job.zsc.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.job.zsc.service.dustexception.onlineAnalysisService onlineAnalysisService;
 
    @GetMapping("/analysisData")
    public void get(){
 
    }
}