冲销接口

This commit is contained in:
潘荣晟
2025-12-01 16:42:44 +08:00
parent e803bee452
commit 4ffa9eeb8f
2 changed files with 48 additions and 0 deletions

View File

@@ -29,4 +29,9 @@ public interface OrderApi {
@PostMapping(PREFIX + "/update-lst-qty-by-order-id")
@Operation(summary = "根据订单明细id更新累积量", description = "根据订单明细id更新收货量")
CommonResult<Boolean> UpdateOrderLstQty(@RequestBody @Validated List<UpdateOrderLstQtyDTO> updateOrderLstQtyDTOS);
@PostMapping(PREFIX + "/void -lst-qty-by-order-id")
@Operation(summary = "根据订单明细id更新累积量(冲销)", description = "根据订单明细id更新收货量(冲销)")
CommonResult<Boolean> voidOrderLstQty(@RequestBody @Validated List<UpdateOrderLstQtyDTO> updateOrderLstQtyDTOS);
}