作者 lackoxygen

add:df

@@ -261,4 +261,12 @@ class Product extends Passage implements ProductInterface @@ -261,4 +261,12 @@ class Product extends Passage implements ProductInterface
261 { 261 {
262 $this->builder->method('POST')->service('brand.convert')->params($params); 262 $this->builder->method('POST')->service('brand.convert')->params($params);
263 } 263 }
  264 +
  265 + /**
  266 + * @inheritDoc
  267 + */
  268 + public function distributionLiveProductList(array $params)
  269 + {
  270 + $this->builder->method('POST')->service('buyin.distributionLiveProductList')->params($params);
  271 + }
264 } 272 }
@@ -230,4 +230,11 @@ interface ProductInterface @@ -230,4 +230,11 @@ interface ProductInterface
230 * @return ResultSet 230 * @return ResultSet
231 */ 231 */
232 public function brandConvert(array $params); 232 public function brandConvert(array $params);
  233 +
  234 + /**
  235 + * @link https://op.jinritemai.com/docs/api-docs/61/1770
  236 + * @param array $params
  237 + * @return mixed
  238 + */
  239 + public function distributionLiveProductList(array $params);
233 } 240 }