- 京东联盟、淘宝联盟、拼多多联盟支持自定义接口

v6 v6.0.120
李光春 4 years ago
parent 68f5c0f662
commit 1bc81c1ddc

@ -1,3 +1,6 @@
## v6.0.120 / 2020-11-03
- 京东联盟、淘宝联盟、拼多多联盟支持自定义接口
## v6.0.119 / 2020-10-10
- 暂时指定phpoffice/phpspreadsheet的版本

@ -25,7 +25,7 @@ use DtApp\ThinkLibrary\service\SystemService;
/**
* 定义当前版本
*/
const VERSION = '6.0.119';
const VERSION = '6.0.120';
if (!function_exists('get_ip_info')) {
/**

@ -323,6 +323,17 @@ class UnionService extends Service
return $this;
}
/**
* 自定义接口
* @param string $method
* @return $this
*/
public function setMethod($method = ''): self
{
$this->method = $method;
return $this;
}
/**
* 返回数组数据
* @return array|mixed

@ -475,6 +475,18 @@ class JinBaoService extends Service
return $this;
}
/**
* 自定义接口
* @param string $type
* @return $this
*/
public function setMethod($type = ''): self
{
$this->type = $type;
return $this;
}
/**
* 返回数组数据
* @return array|mixed

@ -838,6 +838,17 @@ class TbkService extends Service
return $this;
}
/**
* 自定义接口
* @param string $method
* @return $this
*/
public function setMethod($method = ''): self
{
$this->method = $method;
return $this;
}
/**
* 返回Array
* @return array|mixed

Loading…
Cancel
Save