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

51 lines
1.0 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['tbjz_partner']=array (
'columns' =>
array (
'order_id' =>
array (
'type' => 'table:orders@ome',
'required' => true,
'default' => 0,
'editable' => false,
),
'tp_code' =>
array (
'type' => 'varchar(50)',
'required' => true,
'default' => 0,
'editable' => false,
'label'=>'物流商编码',
),
'tp_name' =>
array (
'type' => 'varchar(50)',
'default' => 0,
'editable' => false,
'label' => '物流商名称',
),
'service_type' =>
array (
'type' => 'varchar(50)',
'default' => 0,
'editable' => false,
'label' => '服务类型',
),
'is_virtual_tp' =>
array (
'type' => 'bool',
'default' => 'false',
'label' => '是否虚拟物流商',
),
),
'comment' => '淘宝家装服务商信息表',
'engine' => 'innodb',
'version' => '$Rev: $',
);