15 lines
297 B
PHP
15 lines
297 B
PHP
<?php
|
|
|
|
namespace app\common\library\app\physical\express\contract;
|
|
|
|
interface ExpressInterface
|
|
{
|
|
public function search(array $data, $orderExpress = null);
|
|
|
|
public function subscribe(array $data);
|
|
|
|
public function push(array $data);
|
|
|
|
public function eOrder(array $data, $items);
|
|
}
|