xiangpei
2025-05-09 641b4a3b1572f3a75ce0bd7d645e34252237cf9c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package cn.lili.modules.order.order.service;
 
import cn.lili.modules.order.order.entity.dos.OrderPackage;
import cn.lili.modules.order.order.entity.vo.OrderPackageVO;
import com.baomidou.mybatisplus.extension.service.IService;
 
import java.util.List;
 
/**
 * 子订单业务层
 *
 * @author Chopper
 * @since 2020/11/17 7:36 下午
 */
public interface OrderPackageService extends IService<OrderPackage> {
 
 
    /**
     * 根据订单编号获取订单包裹列表
     * @param orderSn
     * @return
     */
    List<OrderPackage> orderPackageList(String orderSn);
 
    /**
     * 获取指定订单编号的所有包裹
     * @param orderSn
     * @return
     */
    List<OrderPackageVO> getOrderPackageVOList(String orderSn);
}