|
|
@ -36,7 +36,7 @@ public class AcsToWmsController { |
|
|
|
public ResponseEntity<Object> receiveTaskFromAcs(@RequestBody Map whereJson) { |
|
|
|
acsToWmsService.receiveTaskFromAcs(whereJson); |
|
|
|
JSONObject result = new JSONObject(); |
|
|
|
result.put("status", "200"); |
|
|
|
result.put("status", HttpStatus.OK.value()); |
|
|
|
result.put("message", "发送任务成功"); |
|
|
|
return new ResponseEntity<>(result, HttpStatus.OK); |
|
|
|
} |
|
|
@ -47,7 +47,7 @@ public class AcsToWmsController { |
|
|
|
public ResponseEntity<Object> manipulatorApply(@RequestBody Map whereJson) { |
|
|
|
acsToWmsService.manipulatorApply(whereJson); |
|
|
|
JSONObject result = new JSONObject(); |
|
|
|
result.put("status", "200"); |
|
|
|
result.put("status", HttpStatus.OK.value()); |
|
|
|
result.put("message", "发送任务成功"); |
|
|
|
return new ResponseEntity<>(result, HttpStatus.OK); |
|
|
|
} |
|
|
|