Commit b1bfc275 authored by zhangdongying's avatar zhangdongying

物流商RPC

parent 2b6bbc10
<?php
/**
* 物流商
*
* @author zhangdongying
* @date 2024-03-31
*/
declare(strict_types=1);
namespace Meibuyu\Rpc\Service\Interfaces\WmsAdmin;
interface WmsCompanyServiceInterface
{
/**
* 获取物流商列表
*
* @param array $companyIds 物流商ID数组
* @param array $columns 列名数组
* @param array $relations 关联数组
* @return array 默认keyBy('id')
*/
public function getListByIds(array $companyIds, array $columns = ['*'], array $relations = []): array;
}
\ No newline at end of file
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