提交 1bc81c1d 编写于 作者: 李光春's avatar 李光春

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

上级 68f5c0f6
## 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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册