Files
OMS/app/console/dbschema/delivery_extension.php
2025-12-28 23:13:25 +08:00

50 lines
965 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* Copyright © ShopeX http://www.shopex.cn. All rights reserved.
* See LICENSE file for license details.
*/
$db['delivery_extension']=array (
'columns' =>
array (
'delivery_bn' =>
array (
'type' => 'varchar(32)',
'required' => true,
'label' => '发货单号',
'comment' => '发货单号',
'editable' => false,
),
'original_delivery_bn' =>
array (
'type' => 'varchar(80)',
'required' => true,
'label' => '外部发货单号',
'editable' => false,
),
),
'index' =>
array (
'ind_delivery_bn' =>
array (
'columns' =>
array (
0 => 'delivery_bn',
),
),
'ind_original_delivery_bn' =>
array (
'columns' =>
array (
0 => 'original_delivery_bn',
),
),
),
'comment' => '京东仓储发货单外部带好对于扩展表',
'engine' => 'innodb',
'version' => '$Rev: 41996 $',
);
?>