order list order detail print template template list
This commit is contained in:
@@ -6,7 +6,7 @@ import com.peanut.common.utils.PageUtils;
|
||||
import com.peanut.modules.book.entity.BuyOrder;
|
||||
import com.peanut.modules.book.vo.UserOrderVo;
|
||||
import com.peanut.modules.book.vo.request.BuyOrderListRequestVo;
|
||||
import com.peanut.modules.book.vo.response.BuyOrderListResponseVo;
|
||||
import com.peanut.modules.book.vo.response.BuyOrderResponseVo;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
@@ -20,8 +20,6 @@ import java.util.Map;
|
||||
*/
|
||||
public interface BuyOrderService extends IService<BuyOrder> {
|
||||
|
||||
PageUtils list(Map<String, Object> params) throws Exception;
|
||||
|
||||
PageUtils getMyOrderList(Map<String, Object> params);
|
||||
|
||||
//更新订单状态
|
||||
@@ -33,7 +31,13 @@ public interface BuyOrderService extends IService<BuyOrder> {
|
||||
// 查询所有订单是否有可合并
|
||||
Page checkOrder(Map<String, Object> params);
|
||||
|
||||
List<BuyOrderListResponseVo> orderList(BuyOrderListRequestVo requestVo);
|
||||
/**
|
||||
* 订单列表
|
||||
*
|
||||
* @param requestVo
|
||||
* @return
|
||||
*/
|
||||
PageUtils orderList(BuyOrderListRequestVo requestVo);
|
||||
|
||||
/**
|
||||
* 订单拆分发货
|
||||
@@ -43,5 +47,7 @@ public interface BuyOrderService extends IService<BuyOrder> {
|
||||
*/
|
||||
void delivery(String expressCompanyCode, List<Integer> buyOrderDetailId);
|
||||
|
||||
BuyOrderResponseVo orderDetail(String orderSn);
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user