Commit e3412160 authored by 秦俊坤's avatar 秦俊坤

接口逻辑调整,新增 status 状态参数

parent b43edcad
...@@ -15,7 +15,7 @@ interface ChannelAndCompanyInterface ...@@ -15,7 +15,7 @@ interface ChannelAndCompanyInterface
* @param array $channelIds $channelIds:渠道id数组, 格式:[1,3,5] * @param array $channelIds $channelIds:渠道id数组, 格式:[1,3,5]
* @return array * @return array
*/ */
public function getChannelByIds(array $channelIds): array; public function getChannelByIds(array $channelIds, $status = 1): array;
/** /**
* 通过公司id获取公司信息 * 通过公司id获取公司信息
...@@ -27,5 +27,5 @@ interface ChannelAndCompanyInterface ...@@ -27,5 +27,5 @@ interface ChannelAndCompanyInterface
* *
* @return array * @return array
*/ */
public function getCompanyByIds(array $companyIds): array; public function getCompanyByIds(array $companyIds, $status = 1): 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