Commit 23276928 authored by Liu lu's avatar Liu lu

Merge branch 'develop' of http://git.huaperfect.com/without_auth/meibuyu-rpc into develop

parents 0d41c2ec b1bfc275
......@@ -19,4 +19,13 @@ interface ProductionOrderServiceInterface
* @return mixed
*/
public function getUnitCostPriceByProductNo(string $productionNo);
/**
* 根据发货批次号获取结算数量
* @param $deliveryBatchNo
* @param array $extraParams
* @return mixed
*/
public function getDeliveryBatchSettledCnt($deliveryBatchNo, $extraParams = []);
}
<?php
/**
* 物流渠道
*
* @author zhangdongying
* @date 2024-03-31
*/
declare(strict_types=1);
namespace Meibuyu\Rpc\Service\Interfaces\WmsAdmin;
interface WmsChannelServiceInterface
{
/**
* 获取物流渠道列表
*
* @param array $channelIds 物流渠道ID数组
* @param array $columns 列名数组
* @param array $relations 关联数组
* @return array 默认keyBy('id')
*/
public function getListByIds(array $channelIds, array $columns = ['*'], array $relations = []): array;
}
<?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