mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-31 13:25:32 +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['delivery_bill']=array (
|
||
'columns' =>
|
||
array (
|
||
'logi_id' =>
|
||
array (
|
||
'type' => 'int unsigned',
|
||
'required' => true,
|
||
'pkey' => true,
|
||
'editable' => false,
|
||
|
||
),
|
||
'delivery_id' =>
|
||
array (
|
||
'type' => 'int unsigned',
|
||
'required' => true,
|
||
'editable' => false,
|
||
'label' => '发货单号',
|
||
'comment' => '配送流水号',
|
||
'width' =>140,
|
||
'filtertype' => 'normal',
|
||
'filterdefault' => true,
|
||
'in_list' => true,
|
||
'default_in_list' => true,
|
||
),
|
||
|
||
'logi_no' =>
|
||
array (
|
||
'type' => 'varchar(50)',
|
||
'label' => '物流单号',
|
||
'comment' => '物流单号',
|
||
'editable' => false,
|
||
'width' =>110,
|
||
'filtertype' => 'normal',
|
||
'filterdefault' => true,
|
||
'in_list' => true,
|
||
'default_in_list' => true,
|
||
),
|
||
),
|
||
'index' =>
|
||
array (
|
||
'index_logi_no' =>
|
||
array (
|
||
'columns' =>
|
||
array (
|
||
0 => 'logi_no',
|
||
),
|
||
),
|
||
),
|
||
'comment' => '归档发货单多包裹表',
|
||
'engine' => 'innodb',
|
||
'version' => '$Rev: 41996 $',
|
||
); |