mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
59 lines
1.2 KiB
PHP
59 lines
1.2 KiB
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
$db['express_relation']=array (
|
||
'columns' =>
|
||
array (
|
||
'wms_id' =>
|
||
array (
|
||
'type' => 'int unsigned',
|
||
'required' => true,
|
||
'pkey' => true,
|
||
'editable' => false,
|
||
//'extra' => 'auto_increment',
|
||
),
|
||
'logi_id' =>
|
||
array (
|
||
'type' => 'int unsigned',
|
||
'required' => true,
|
||
'pkey' => true,
|
||
'editable' => false,
|
||
//'extra' => 'auto_increment',
|
||
),
|
||
'sys_express_bn' =>
|
||
array (
|
||
'type' => 'varchar(32)',
|
||
'required' => true,
|
||
'editable' => false,
|
||
'label' => '物流公司编号',
|
||
'comment' => '物流公司编号',
|
||
'width' =>140,
|
||
),
|
||
'wms_express_bn' =>
|
||
array (
|
||
'type' => 'varchar(32)',
|
||
'editable' => false,
|
||
'label' => 'WMS物流公司编号',
|
||
'comment' => 'WMS物流公司编号',
|
||
'width' =>140,
|
||
),
|
||
),
|
||
'index' =>
|
||
array (
|
||
'index_wms_id_sys_express_bn' =>
|
||
array (
|
||
'columns' =>
|
||
array (
|
||
0 => 'wms_id',
|
||
1 => 'sys_express_bn',
|
||
),
|
||
),
|
||
|
||
),
|
||
'comment' => '物流公司关联表',
|
||
'engine' => 'innodb',
|
||
'version' => '$Rev: 41996 $',
|
||
); |