whycxzp
2021-12-29 f2634f1df96eaa46d76f23b5bbeda579de468e14
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.whyc.controller;
 
import com.whyc.pojo.FBOTestDataInf;
import com.whyc.service.FBOTestDataInfService;
import io.swagger.annotations.Api;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
@RequestMapping("fBOTestDataInf")
@RestController
@Api(tags = "在线监测-一体机导入记录")
public class FBOTestDataInfController {
 
    @Autowired
    private FBOTestDataInfService service;
 
}