mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 02:45:33 +08:00
58 lines
1.2 KiB
PHP
58 lines
1.2 KiB
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
$db['branch_relation']=array (
|
||
'columns' =>
|
||
array (
|
||
'wms_id' =>
|
||
array (
|
||
'type' => 'int unsigned',
|
||
'required' => true,
|
||
//'pkey' => true,
|
||
'editable' => false,
|
||
//'extra' => 'auto_increment',
|
||
),
|
||
'sys_branch_bn' =>
|
||
array (
|
||
'type' => 'varchar(32)',
|
||
'required' => true,
|
||
'editable' => false,
|
||
'label' => '仓库编号',
|
||
'comment' => '仓库编号',
|
||
'width' =>140,
|
||
),
|
||
'wms_branch_bn' =>
|
||
array (
|
||
'type' => 'varchar(32)',
|
||
'editable' => false,
|
||
'label' => 'WMS仓库编号',
|
||
'comment' => 'WMS仓库编号',
|
||
'width' =>140,
|
||
),
|
||
'negative' =>
|
||
array (
|
||
'type' => 'mediumint',
|
||
'editable' => false,
|
||
'label' => '权重',
|
||
'width' =>140,
|
||
),
|
||
),
|
||
'index' =>
|
||
array (
|
||
'index_wms_id_sys_branch_bn' =>
|
||
array (
|
||
'columns' =>
|
||
array (
|
||
0 => 'wms_id',
|
||
1 => 'sys_branch_bn',
|
||
),
|
||
),
|
||
|
||
),
|
||
'comment' => '第三方仓储仓库关联关系表',
|
||
'engine' => 'innodb',
|
||
'version' => '$Rev: 41996 $',
|
||
); |