<?php
namespace app\common\shipping;
//定義一個物流串接介面
interface Ishipping
{
public function request($data);
}