bug fix
This commit is contained in:
@@ -3,7 +3,7 @@ package com.peanut.modules.book.service;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.peanut.common.utils.PageUtils;
|
||||
import com.peanut.modules.book.entity.BuyOrderEntity;
|
||||
import com.peanut.modules.book.entity.BuyOrder;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@@ -15,7 +15,7 @@ import java.util.Map;
|
||||
* @email yl328572838@163.com
|
||||
* @date 2022-08-29 15:27:44
|
||||
*/
|
||||
public interface BuyOrderService extends IService<BuyOrderEntity> {
|
||||
public interface BuyOrderService extends IService<BuyOrder> {
|
||||
|
||||
PageUtils queryPage(Map<String, Object> params) throws Exception;
|
||||
|
||||
@@ -32,9 +32,7 @@ public interface BuyOrderService extends IService<BuyOrderEntity> {
|
||||
* 订单拆分发货
|
||||
*
|
||||
* @param expressCompanyCode 快递公司代码
|
||||
* @param userAddressId 用户地址 ID
|
||||
* @param buyOrderDetailId 订单详情 ID 列表
|
||||
* @throws Exception exception
|
||||
*/
|
||||
void createSplitPackageOrder(String expressCompanyCode, Integer userAddressId, List<Integer> buyOrderDetailId) throws Exception;
|
||||
void createSplitPackageOrder(String expressCompanyCode, List<Integer> buyOrderDetailId);
|
||||
}
|
||||
Reference in New Issue
Block a user