DispatchPlanServiceInterface.php 577 Bytes
Newer Older
jiangkebao's avatar
jiangkebao committed
1 2 3 4 5 6 7 8 9 10
<?php
/**
 * Created by PhpStorm.
 * User: 姜克保
 * Date: 2020/5/20
 * Time: 15:48
 */

namespace Meibuyu\Micro\Service\Interfaces;

fuyunnan's avatar
fuyunnan committed
11

jiangkebao's avatar
jiangkebao committed
12 13
interface DispatchPlanServiceInterface
{
14 15 16 17 18 19 20 21 22 23 24 25 26 27
    /**
     * 返回发货计划存在的仓库子产品id
     * @param array $idList 仓库子产品id
     * @return array
     */
    public function getExistProductChildIds(array $idList): array;

    /**
     * 返回发货计划存在的平台子产品id
     * @param array $idList
     * @return array
     */
    public function getExistPlatformProductChildIds(array $idList): array;

jiangkebao's avatar
jiangkebao committed
28
}