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

86 lines
2.2 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.
*/
/**
* 团购订单结构
*
* @author shiyao744@sohu.com
* @version 0.1b
*/
$db['order_groupon'] = array(
'columns' =>
array(
'order_groupon_id' =>
array(
'type' => 'number',
'required' => true,
'pkey' => true,
'extra' => 'auto_increment',
'editable' => false,
),
'name' =>
array(
'type' => 'varchar(255)',
'required' => true,
'editable' => false,
'default_in_list' => true,
'in_list' => true,
'label' => '标题',
),
'shop_id' =>
array (
'type' => 'table:shop@ome',
'label' => '来源店铺',
'width' => 75,
'editable' => false,
'in_list' => true,
'default_in_list' => true,
'filtertype' => 'normal',
'filterdefault' => true,
),
'create_time' =>
array(
'type' => 'time',
'required' => true,
'editable' => false,
'in_list' => true,
'default_in_list' => true,
'label' => '创建时间',
'comment' => '创建时间',
),
'opt_id' =>
array(
'type' => 'number',
'required' => true,
'editable' => false,
'in_list' => false,
),
'opt_name' =>
array(
'type' => 'varchar(64)',
'required' => true,
'editable' => false,
'in_list' => true,
'default_in_list' => true,
'label' => '操作人',
'comment' => '操作人',
),
'org_id' =>
array (
'type' => 'table:operation_organization@ome',
'label' => '运营组织',
'editable' => false,
'width' => 60,
'filtertype' => 'normal',
'filterdefault' => true,
'in_list' => true,
'default_in_list' => true,
),
),
'comment' => '订单批量导入',
'engine' => 'innodb',
'version' => '$Rev: $',
);