|
...
|
...
|
@@ -361,6 +361,39 @@ class Product extends Request implements ProductInterface |
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function productIsvgetClueList(array $params = [])
|
|
|
|
{
|
|
|
|
$this->builder->method('POST')
|
|
|
|
->service('product.isv/getClueList')
|
|
|
|
->path('/product/isv/getClueList')
|
|
|
|
->params($params);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function productIsvplead(array $params = [])
|
|
|
|
{
|
|
|
|
$this->builder->method('POST')
|
|
|
|
->service('product.isv/plead')
|
|
|
|
->path('/product/isv/plead')
|
|
|
|
->params($params);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function productIsvqueryClueAuditStatus(array $params = [])
|
|
|
|
{
|
|
|
|
$this->builder->method('POST')
|
|
|
|
->service('product.isv/queryClueAuditStatus')
|
|
|
|
->path('/product/isv/queryClueAuditStatus')
|
|
|
|
->params($params);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function productGetRecommendCategory(array $params = [])
|
|
|
|
{
|
|
|
|
$this->builder->method('POST')
|
...
|
...
|
|