mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-02 13:55:49 +08:00
27 lines
627 B
PHP
27 lines
627 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class logisticsmanager_waybill_customs {
|
||
public static $businessType = array(
|
||
'1' => 1,
|
||
|
||
);
|
||
/**
|
||
* 获取物流公司编码
|
||
* @param Sring $logistics_code 物流代码
|
||
*/
|
||
public function logistics($logistics_code = '') {
|
||
$logistics = array(
|
||
'1' => array('code'=>'1','name'=>'跨境物流快递'),
|
||
);
|
||
|
||
if (!empty($logistics_code)) {
|
||
return $logistics[$logistics_code];
|
||
}
|
||
return $logistics;
|
||
}
|
||
|
||
} |