| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?php
- namespace App\Services\Express;
- class PDDExpress implements ExpressInterface
- {
- // TODO 目前获取快递单号请求参数
- private $app_key = '';
- private $sign_method = '';
- private $target_app_key = '';
- private $searchUrl = '';
- private $getElectronicSingleUrl = '';
- private $cancelElectronicSingleUrl = '';
- private $updateElectronicSingleUrl = '';
- /**
- * @inheritDoc
- */
- function searchBalance()
- {
- }
- /**
- * @inheritDoc
- */
- function getElectronicSingle()
- {
- // TODO: Implement getElectronicSingle() method.
- }
- /**
- * @inheritDoc
- */
- function cancelElectronicSingle()
- {
- // TODO: Implement cancelElectronicSingle() method.
- }
- function searElectronicSingle()
- {
- // TODO: Implement searElectronicSingle() method.
- }
- /**
- * @inheritDoc
- */
- function saveElectronicSingle()
- {
- // TODO: Implement saveElectronicSingle() method.
- }
- /**
- * @inheritDoc
- */
- function updateElectronicSingle()
- {
- // TODO: Implement updateElectronicSingle() method.
- }
- private $response = [
- ];
- }
|