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