php-wms-client/src/GwallWms.php
2020-04-07 15:24:57 +08:00

25 lines
833 B
PHP

<?php
namespace PdWms;
class GwallWms extends QimenWms
{
protected static $default_shop_name = '北京拍店';
protected static $default_seller_nick = '北京拍店';
protected static $default_sender_name = '北京拍店';
protected static $default_sender_mobile = '17606553430';
protected static $default_sender_province = '浙江省';
protected static $default_sender_city = '绍兴市';
protected static $default_sender_area = '诸暨市';
protected static $default_sender_address = '王家湖路22号大壹云仓';
protected static $default_zip_code = '000000';
protected $config = [];
public function __construct($config = null)
{
$wmsConf = $config ?? (require(dirname(dirname(__FILE__)) . '/config/wms.php'))['gwall'];
parent::__construct($wmsConf);
}
}