whyclxw
2024-09-02 6fb5bf49f4a71edf93e034a84d52f8a6eb363c4b
src/main/java/com/whyc/controller/DevA200TestparamController.java
@@ -7,7 +7,9 @@
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.client.RestTemplate;
import javax.annotation.Resource;
import java.util.List;
@RestController
@@ -17,9 +19,10 @@
    @Autowired
    private DevA200TestparamService service;
    @ApiOperation(value = "读取a200一体机参数")
    @GetMapping("getA200Param")
    public Response getA200Param(@RequestParam int devId){
    public Object getA200Param(@RequestParam int devId){
        return service.getA200Param(devId);
    }