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

81 lines
1.8 KiB
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_log']=array (
'columns' =>
array (
'log_id' =>
array (
'type' => 'int unsigned',
'required' => true,
'pkey' => true,
'editable' => false,
'extra' => 'auto_increment',
),
'delivery_id' =>
array (
'type' => 'table:delivery@wms',
'required' => true,
'editable' => false,
'label' => '发货单号',
'comment' => '配送流水号',
'width' =>140,
),
'logi_id' =>
array (
'type' => 'table:dly_corp@ome',
'comment' => '物流公司ID',
'editable' => false,
'label' => '物流公司',
'filtertype' => 'normal',
'filterdefault' => true,
),
'logi_name' =>
array (
'type' => 'varchar(100)',
'label' => '物流公司',
'comment' => '物流公司名称',
'editable' => false,
'width' =>75,
'in_list' => true,
'default_in_list' => true,
),
'logi_no' =>
array (
'type' => 'varchar(50)',
'label' => '物流单号',
'comment' => '物流单号',
'editable' => false,
'filtertype' => 'normal',
'filterdefault' => true,
'width' =>110,
'in_list' => true,
'default_in_list' => true,
),
'create_time' =>
array (
'type' => 'time',
'label' => '创建时间',
'comment' => '单据生成时间',
'editable' => false,
'filtertype' => 'time',
'in_list' => true,
),
),
'index' =>
array (
'index_logi_no' =>
array (
'columns' =>
array (
0 => 'logi_no',
),
),
),
'comment' => '发货单物流信息日志表',
'engine' => 'innodb',
'version' => '$Rev: 41996 $',
);