| | |
| | | return returnData(R.SUCCESS.getCode(), deliveryOrderService.getSupplierDeliveryOrderItem(id)); |
| | | } |
| | | |
| | | @GetMapping("/list/items/views") |
| | | @ApiOperation(value = "获取商品详情列表") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(name = "ids", value = "配送物品id列表", required = true, dataType = "String", paramType = "query") |
| | | }) |
| | | public ResponseEntity<ReturnDataDTO<List<DeliveryOrderItemDTO>>> getSupplierDeliveryOrderItems(String ids){ |
| | | return returnData(R.SUCCESS.getCode(), deliveryOrderService.getSupplierDeliveryOrderItems(ids)); |
| | | } |
| | | |
| | | @PostMapping("/list/arrive") |
| | | @ApiOperation(value = "确认入位") |
| | | public ResponseEntity<ReturnDataDTO> arrived(@RequestBody DeliveryOrderArriveDTO dto) { |