php-wms-client/src/GwallWms.php

23 lines
804 B
PHP
Raw Normal View History

2020-03-19 09:05:29 +00:00
<?php
namespace PdWms;
2020-03-30 02:51:11 +00:00
class GwallWms extends QimenWms
2020-03-19 09:05:29 +00:00
{
2020-04-07 07:21:28 +00:00
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';
2020-03-25 06:16:20 +00:00
public function __construct($config = null)
2020-03-19 09:05:29 +00:00
{
$wmsConf = $config ?? (require(dirname(dirname(__FILE__)) . '/config/wms.php'))['gwall'];
2020-03-30 02:51:11 +00:00
parent::__construct($wmsConf);
2020-03-20 10:15:53 +00:00
}
2020-03-19 09:05:29 +00:00
}