代码更新

This commit is contained in:
lyd
2022-11-21 17:45:42 +08:00
parent d4450bb48d
commit ead41bc0ab
4 changed files with 12 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
package org.nl.wms.pda.callmaterial.rest; package org.nl.wms.pda.callmaterial.rest;
import cn.dev33.satoken.annotation.SaIgnore;
import com.alibaba.fastjson.JSONObject; import com.alibaba.fastjson.JSONObject;
import io.swagger.annotations.Api; import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiOperation;
@@ -26,6 +27,7 @@ public class CallMaterialController {
@PostMapping("/queryPoint") @PostMapping("/queryPoint")
@Log("查询区域点位") @Log("查询区域点位")
@ApiOperation("查询区域点位") @ApiOperation("查询区域点位")
@SaIgnore
public ResponseEntity<Object> queryPoint() { public ResponseEntity<Object> queryPoint() {
return new ResponseEntity<>(callMaterialService.queryPoint(), HttpStatus.OK); return new ResponseEntity<>(callMaterialService.queryPoint(), HttpStatus.OK);
} }
@@ -33,6 +35,7 @@ public class CallMaterialController {
@PostMapping("/confirm") @PostMapping("/confirm")
@Log("叫料确定") @Log("叫料确定")
@ApiOperation("叫料确定") @ApiOperation("叫料确定")
@SaIgnore
public ResponseEntity<Object> confirm(@RequestBody JSONObject whereJson) { public ResponseEntity<Object> confirm(@RequestBody JSONObject whereJson) {
return new ResponseEntity<>(callMaterialService.confirm(whereJson), HttpStatus.OK); return new ResponseEntity<>(callMaterialService.confirm(whereJson), HttpStatus.OK);
} }

View File

@@ -1,5 +1,6 @@
package org.nl.wms.pda.callvehicle.rest; package org.nl.wms.pda.callvehicle.rest;
import cn.dev33.satoken.annotation.SaIgnore;
import com.alibaba.fastjson.JSONObject; import com.alibaba.fastjson.JSONObject;
import io.swagger.annotations.Api; import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiOperation;
@@ -27,6 +28,7 @@ public class CallVehicleController {
@PostMapping("/queryPoint") @PostMapping("/queryPoint")
@Log("查询区域点位") @Log("查询区域点位")
@ApiOperation("查询区域点位") @ApiOperation("查询区域点位")
@SaIgnore
public ResponseEntity<Object> queryPoint() { public ResponseEntity<Object> queryPoint() {
return new ResponseEntity<>(callVehicleService.queryPoint(), HttpStatus.OK); return new ResponseEntity<>(callVehicleService.queryPoint(), HttpStatus.OK);
} }
@@ -34,6 +36,7 @@ public class CallVehicleController {
@PostMapping("/confirm") @PostMapping("/confirm")
@Log("呼叫空托盘确定") @Log("呼叫空托盘确定")
@ApiOperation("呼叫空托盘确定") @ApiOperation("呼叫空托盘确定")
@SaIgnore
public ResponseEntity<Object> confirm(@RequestBody JSONObject whereJson) { public ResponseEntity<Object> confirm(@RequestBody JSONObject whereJson) {
return new ResponseEntity<>(callVehicleService.confirm(whereJson), HttpStatus.OK); return new ResponseEntity<>(callVehicleService.confirm(whereJson), HttpStatus.OK);
} }

View File

@@ -1,5 +1,6 @@
package org.nl.wms.pda.sendmaterial.rest; package org.nl.wms.pda.sendmaterial.rest;
import cn.dev33.satoken.annotation.SaIgnore;
import com.alibaba.fastjson.JSONObject; import com.alibaba.fastjson.JSONObject;
import io.swagger.annotations.Api; import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiOperation;
@@ -26,6 +27,7 @@ public class SendMaterialController {
@PostMapping("/queryPoint") @PostMapping("/queryPoint")
@Log("查询区域点位") @Log("查询区域点位")
@ApiOperation("查询区域点位") @ApiOperation("查询区域点位")
@SaIgnore
public ResponseEntity<Object> queryPoint() { public ResponseEntity<Object> queryPoint() {
return new ResponseEntity<>(sendMaterialService.queryPoint(), HttpStatus.OK); return new ResponseEntity<>(sendMaterialService.queryPoint(), HttpStatus.OK);
} }
@@ -33,6 +35,7 @@ public class SendMaterialController {
@PostMapping("/confirm") @PostMapping("/confirm")
@Log("送料确定") @Log("送料确定")
@ApiOperation("送料确定") @ApiOperation("送料确定")
@SaIgnore
public ResponseEntity<Object> confirm(@RequestBody JSONObject whereJson) { public ResponseEntity<Object> confirm(@RequestBody JSONObject whereJson) {
return new ResponseEntity<>(sendMaterialService.confirm(whereJson), HttpStatus.OK); return new ResponseEntity<>(sendMaterialService.confirm(whereJson), HttpStatus.OK);
} }

View File

@@ -1,5 +1,6 @@
package org.nl.wms.pda.sendvehicle.rest; package org.nl.wms.pda.sendvehicle.rest;
import cn.dev33.satoken.annotation.SaIgnore;
import com.alibaba.fastjson.JSONObject; import com.alibaba.fastjson.JSONObject;
import io.swagger.annotations.Api; import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiOperation;
@@ -28,6 +29,7 @@ public class SendVehicleController {
@PostMapping("/queryPoint") @PostMapping("/queryPoint")
@Log("查询区域点位") @Log("查询区域点位")
@ApiOperation("查询区域点位") @ApiOperation("查询区域点位")
@SaIgnore
public ResponseEntity<Object> queryPoint() { public ResponseEntity<Object> queryPoint() {
return new ResponseEntity<>(sendVehicleService.queryPoint(), HttpStatus.OK); return new ResponseEntity<>(sendVehicleService.queryPoint(), HttpStatus.OK);
} }
@@ -35,6 +37,7 @@ public class SendVehicleController {
@PostMapping("/confirm") @PostMapping("/confirm")
@Log("送空托盘确定") @Log("送空托盘确定")
@ApiOperation("送空托盘确定") @ApiOperation("送空托盘确定")
@SaIgnore
public ResponseEntity<Object> confirm(@RequestBody JSONObject whereJson) { public ResponseEntity<Object> confirm(@RequestBody JSONObject whereJson) {
return new ResponseEntity<>(sendVehicleService.confirm(whereJson), HttpStatus.OK); return new ResponseEntity<>(sendVehicleService.confirm(whereJson), HttpStatus.OK);
} }