| | |
| | | return receiveMsgService.queryTransfer(queryParams); |
| | | } |
| | | |
| | | /** |
| | | * 对接协议 8.4 库存明细查询 |
| | | */ |
| | | @PostMapping("/inventory/details") |
| | | @ApiOperation(value = "库存明细查询") |
| | | public R inventoryDetails(@RequestBody(required = false) InventoryDetailsParam param) { |
| | | return receiveMsgService.inventoryDetails(param != null ? param : new InventoryDetailsParam()); |
| | | } |
| | | |
| | | /** |
| | | * 对接协议 8.5 库存汇总查询 |
| | | */ |
| | | @PostMapping("/inventory/summary") |
| | | @ApiOperation(value = "库存汇总查询") |
| | | public R inventorySummary(@RequestBody(required = false) InventorySummaryParam param) { |
| | | return receiveMsgService.inventorySummary(param != null ? param : new InventorySummaryParam()); |
| | | } |
| | | |
| | | } |