DispatchPlanServiceInterface.php 749 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

王源's avatar
王源 committed
12 13 14 15
/**
 * @deprecated 此接口废弃,在之后的版本会被删除
 * 请引入meibuyu/rpc组件,使用Meibuyu\Rpc\Service\Interfaces\Store\DispatchPlanServiceInterface
 */
jiangkebao's avatar
jiangkebao committed
16 17
interface DispatchPlanServiceInterface
{
18 19 20 21 22 23 24 25 26 27 28 29 30 31
    /**
     * 返回发货计划存在的仓库子产品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
32
}