代码修改
This commit is contained in:
@@ -27,7 +27,6 @@ public class CallMaterialController {
|
||||
@PostMapping("/queryPoint")
|
||||
@Log("查询区域点位")
|
||||
@ApiOperation("查询区域点位")
|
||||
@SaIgnore
|
||||
public ResponseEntity<Object> queryPoint() {
|
||||
return new ResponseEntity<>(callMaterialService.queryPoint(), HttpStatus.OK);
|
||||
}
|
||||
@@ -35,7 +34,6 @@ public class CallMaterialController {
|
||||
@PostMapping("/confirm")
|
||||
@Log("叫料确定")
|
||||
@ApiOperation("叫料确定")
|
||||
@SaIgnore
|
||||
public ResponseEntity<Object> confirm(@RequestBody JSONObject whereJson) {
|
||||
return new ResponseEntity<>(callMaterialService.confirm(whereJson), HttpStatus.OK);
|
||||
}
|
||||
|
||||
@@ -28,7 +28,6 @@ public class CallVehicleController {
|
||||
@PostMapping("/queryPoint")
|
||||
@Log("查询区域点位")
|
||||
@ApiOperation("查询区域点位")
|
||||
@SaIgnore
|
||||
public ResponseEntity<Object> queryPoint() {
|
||||
return new ResponseEntity<>(callVehicleService.queryPoint(), HttpStatus.OK);
|
||||
}
|
||||
@@ -36,7 +35,6 @@ public class CallVehicleController {
|
||||
@PostMapping("/confirm")
|
||||
@Log("呼叫空托盘确定")
|
||||
@ApiOperation("呼叫空托盘确定")
|
||||
@SaIgnore
|
||||
public ResponseEntity<Object> confirm(@RequestBody JSONObject whereJson) {
|
||||
return new ResponseEntity<>(callVehicleService.confirm(whereJson), HttpStatus.OK);
|
||||
}
|
||||
|
||||
@@ -27,7 +27,6 @@ public class SendMaterialController {
|
||||
@PostMapping("/queryPoint")
|
||||
@Log("查询区域点位")
|
||||
@ApiOperation("查询区域点位")
|
||||
@SaIgnore
|
||||
public ResponseEntity<Object> queryPoint() {
|
||||
return new ResponseEntity<>(sendMaterialService.queryPoint(), HttpStatus.OK);
|
||||
}
|
||||
@@ -35,7 +34,6 @@ public class SendMaterialController {
|
||||
@PostMapping("/confirm")
|
||||
@Log("送料确定")
|
||||
@ApiOperation("送料确定")
|
||||
@SaIgnore
|
||||
public ResponseEntity<Object> confirm(@RequestBody JSONObject whereJson) {
|
||||
return new ResponseEntity<>(sendMaterialService.confirm(whereJson), HttpStatus.OK);
|
||||
}
|
||||
|
||||
@@ -29,7 +29,6 @@ public class SendVehicleController {
|
||||
@PostMapping("/queryPoint")
|
||||
@Log("查询区域点位")
|
||||
@ApiOperation("查询区域点位")
|
||||
@SaIgnore
|
||||
public ResponseEntity<Object> queryPoint() {
|
||||
return new ResponseEntity<>(sendVehicleService.queryPoint(), HttpStatus.OK);
|
||||
}
|
||||
@@ -37,7 +36,6 @@ public class SendVehicleController {
|
||||
@PostMapping("/confirm")
|
||||
@Log("送空托盘确定")
|
||||
@ApiOperation("送空托盘确定")
|
||||
@SaIgnore
|
||||
public ResponseEntity<Object> confirm(@RequestBody JSONObject whereJson) {
|
||||
return new ResponseEntity<>(sendVehicleService.confirm(whereJson), HttpStatus.OK);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user