mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
77 lines
2.1 KiB
PHP
77 lines
2.1 KiB
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
$db['order_objects_extend']=array(
|
||
'columns' => array(
|
||
'obj_id' => array(
|
||
'type' => 'table:order_objects@ome',
|
||
'required' => true,
|
||
'default' => '0',
|
||
'editable' => false,
|
||
'pkey' => true,
|
||
'comment' => '订单obj_id',
|
||
),
|
||
'order_id' =>
|
||
array (
|
||
'type' => 'table:orders@ome',
|
||
'required' => true,
|
||
'default' => '0',
|
||
'editable' => false,
|
||
),
|
||
'store_dly_type' => array(
|
||
'type' => 'tinyint(1)',
|
||
'default' => '0',
|
||
'comment' => '门店发货模式',
|
||
'editable' => false,
|
||
),
|
||
'store_bn' => array(
|
||
'type' => 'varchar(20)',
|
||
'comment' => '门店编码',
|
||
'editable' => false,
|
||
),
|
||
'customization' => array(
|
||
'type' => 'longtext',
|
||
'editable' => false,
|
||
'label' => '定制信息',
|
||
'comment' => '商品定制信息,格式:json',
|
||
),
|
||
'at_time' => array(
|
||
'type' => 'TIMESTAMP',
|
||
'label' => '创建时间',
|
||
'default' => 'CURRENT_TIMESTAMP',
|
||
'width' => 135,
|
||
'filtertype' => 'time',
|
||
'filterdefault' => true,
|
||
'in_list' => true,
|
||
'default_in_list' => true,
|
||
),
|
||
'up_time' => array(
|
||
'type' => 'TIMESTAMP',
|
||
'label' => '更新时间',
|
||
'default' => 'CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP',
|
||
'width' => 135,
|
||
'filtertype' => 'time',
|
||
'filterdefault' => true,
|
||
'in_list' => true,
|
||
'default_in_list' => true,
|
||
),
|
||
),
|
||
'index' => array(
|
||
'ind_at_time' => array(
|
||
'columns' => array(
|
||
0 => 'at_time',
|
||
),
|
||
),
|
||
'ind_up_time' => array(
|
||
'columns' => array(
|
||
0 => 'up_time',
|
||
),
|
||
),
|
||
),
|
||
'engine' => 'innodb',
|
||
'version' => '$Rev: 40912 $',
|
||
'comment' => '订单Objects扩展表',
|
||
); |