补充添加接口描述

This commit is contained in:
longbinbin
2024-12-03 17:00:48 +08:00
parent 78ce483c0d
commit 6abf428236
8 changed files with 51 additions and 20 deletions

View File

@ -22,6 +22,11 @@ public interface OrderMapper {
// int deleteById(Long id);
int update(OrderAddOrUpdateReq order);
/**
* 添加订单明细
* @param orderItems
* @return
*/
int addOrderItems(List<OrderItemEntity> orderItems);
}