Commit ddc10580 authored by gongyuanbiao's avatar gongyuanbiao
Browse files

获取 物流渠道 物流公司rpc

parent fc39ae9d
Loading
Loading
Loading
Loading
+26 −0
Original line number Original line Diff line number Diff line
<?php
/**
 * Created by PhpStorm.
 * User: Jack
 * Date: 2020/1/9
 * Time: 15:07
 */

namespace Meibuyu\Rpc\Service\Interfaces\Wms;

interface ChannelAndCompanyInterface
{
    /**
     * 通过物流渠道id获取物流渠道
     * @param array $channelIds $channelIds:渠道id数组, 格式:[1,3,5]
     * @return array
     */
    public function getChannelByIds(array $channelIds): array;

    /**
     * 通过公司id获取公司信息
     * @param array $companyIds companyIds:公司id数组, 格式:[1,3,5]
     * @return array
     */
    public function getCompanyByIds(array $companyIds): array;
}