Commit ddc10580 authored by gongyuanbiao's avatar gongyuanbiao

获取 物流渠道 物流公司rpc

parent fc39ae9d
<?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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment