|
@@ -58,12 +58,14 @@ public class WhsMngController {
|
58
|
58
|
@ApiImplicitParams({
|
59
|
59
|
@ApiImplicitParam(name = "X-AUTH-TOKEN", value = "CONN-KEY", required = true, dataType = "String", paramType = "header"),
|
60
|
60
|
@ApiImplicitParam(name = "brandId", value = "브랜드아이디", required = true, dataType = "String", paramType = "query"),
|
61
|
|
- @ApiImplicitParam(name = "whsId", value = "창고아이디", required = true, dataType = "String", paramType = "query")
|
|
61
|
+ @ApiImplicitParam(name = "storeId", value = "매장아이디", required = false, dataType = "String", paramType = "query"),
|
|
62
|
+ @ApiImplicitParam(name = "whsId", value = "창고아이디", required = false, dataType = "String", paramType = "query")
|
62
|
63
|
})
|
63
|
64
|
@ApiOperation(value = "창고 정보")
|
64
|
65
|
@GetMapping("/info-whs")
|
65
|
|
- public ResponseEntity<WhsMngInfoResponse> infoWhs(@RequestParam(value = "brandId") String brandId, @RequestParam(value = "whsId") String whsId) throws Exception {
|
66
|
|
- return ResponseEntity.ok(whsMngService.selectWhsMngInfo(brandId, whsId));
|
|
66
|
+ public ResponseEntity<WhsMngInfoResponse> infoWhs(@RequestParam(value = "brandId") String brandId,
|
|
67
|
+ @RequestParam(value = "storeId") String storeId, @RequestParam(value = "whsId") String whsId) throws Exception {
|
|
68
|
+ return ResponseEntity.ok(whsMngService.selectWhsMngInfo(brandId, storeId, whsId));
|
67
|
69
|
}
|
68
|
70
|
|
69
|
71
|
/**
|