50 lines
952 B
PHP
Raw Normal View History

2023-04-26 18:16:17 +08:00
<?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);
}
}