|
|
@ -68,6 +68,32 @@ public class DeviceController extends BaseController { |
|
|
|
} |
|
|
|
|
|
|
|
@ResponseBody |
|
|
|
@PostMapping("/api/device/large-buffer-tube-load") |
|
|
|
public ApiResponse largeBufferTubeLoad() { |
|
|
|
// List< CsmLargeBufferTube> list = this.deviceService.largeBufferTubeLoad(); |
|
|
|
return this.success(); |
|
|
|
} |
|
|
|
|
|
|
|
@ResponseBody |
|
|
|
@PostMapping("/api/device/large-buffer-tube-update") |
|
|
|
public ApiResponse largeBufferTubeUpdate(@RequestBody ParamLargeBufferTubeUpdate param) { |
|
|
|
this.deviceService.largeBufferTubeUpdate(param); |
|
|
|
return this.success(); |
|
|
|
} |
|
|
|
|
|
|
|
@ResponseBody |
|
|
|
@PostMapping("/api/device/large-buffer-tube-status-get") |
|
|
|
public ApiResponse largeBufferTubeStatusGet() { |
|
|
|
return this.success(this.deviceService.device.largeBufferTubes.getAll()); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ResponseBody |
|
|
|
@PostMapping("/api/device/temperature-get") |
|
|
|
public ApiResponse temperatureGet() { |
|
|
|
return this.success(Integer.valueOf("100")); |
|
|
@ -76,6 +102,10 @@ public class DeviceController extends BaseController { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ResponseBody |
|
|
|
@PostMapping("/api/device/pipette-tip-update") |
|
|
|
public ApiResponse pipetteTipUpdate( @RequestBody ParamPipetteTipUpdate param ) { |
|
|
@ -83,19 +113,7 @@ public class DeviceController extends BaseController { |
|
|
|
return this.success(); |
|
|
|
} |
|
|
|
|
|
|
|
@ResponseBody |
|
|
|
@PostMapping("/api/device/large-buffer-tube-load") |
|
|
|
public ApiResponse largeBufferTubeLoad() { |
|
|
|
List< CsmLargeBufferTube> list = this.deviceService.largeBufferTubeLoad(); |
|
|
|
return this.success(list); |
|
|
|
} |
|
|
|
|
|
|
|
@ResponseBody |
|
|
|
@PostMapping("/api/device/large-buffer-tube-update") |
|
|
|
public ApiResponse largeBufferTubeUpdate(@RequestBody ParamLargeBufferTubeUpdate param) { |
|
|
|
this.deviceService.largeBufferTubeUpdate(param); |
|
|
|
return this.success(); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|