mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-11-30 22:20:45 +00:00
50 lines
952 B
PHP
50 lines
952 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Services\Business\KuaiTuanTuan;
|
||
|
|
|
||
|
|
class FaceSheet extends KuaiTuanTuan
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* 快递公司查看接口
|
||
|
|
*
|
||
|
|
* @return mixed
|
||
|
|
*/
|
||
|
|
public function getCompanies()
|
||
|
|
{
|
||
|
|
$type = 'pdd.logistics.companies.get';
|
||
|
|
$appendParams = [];
|
||
|
|
|
||
|
|
return $this->doRequest($type, $appendParams);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* searchWayBill
|
||
|
|
*
|
||
|
|
* @return mixed
|
||
|
|
*/
|
||
|
|
public function searchWayBill()
|
||
|
|
{
|
||
|
|
$type = 'pdd.waybill.search';
|
||
|
|
$appendParams = [];
|
||
|
|
|
||
|
|
return $this->doRequest($type, $appendParams);
|
||
|
|
}
|
||
|
|
|
||
|
|
public function getLogisticsOrderTrance()
|
||
|
|
{
|
||
|
|
$type = 'pdd.logistics.ordertrace.get';
|
||
|
|
$appendParams = [];
|
||
|
|
|
||
|
|
return $this->doRequest($type, $appendParams);
|
||
|
|
}
|
||
|
|
|
||
|
|
public function test()
|
||
|
|
{
|
||
|
|
$type = 'pdd.cloudprint.stdtemplates.get';
|
||
|
|
$appendParams = [];
|
||
|
|
|
||
|
|
return $this->doRequest($type, $appendParams);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|