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

78 lines
2.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['order_retrial_snapshot']=array (
'columns' =>
array (
'tid' =>
array (
'type' => 'int unsigned',
'pkey' => true,
'extra' => 'auto_increment',
'editable' => false,
'required' => true,
'label' => '编号',
),
'retrial_id' =>
array (
'type' => 'int(10)',
'required' => true,
'label' => '复审ID',
'in_list' => false,
'default_in_list' => true,
'width' => 60,
'hidden' => true,
'order'=>10,
),
'order_id' =>
array (
'type' => 'int unsigned',
'default' => '0',
'required' => true,
'in_list' => false,
'label' => '订单ID',
'width' => 100,
'order'=>20,
),
'order_detail' =>
array(
'type' => 'longtext',
'required' => false,
'editable' => false,
'label' => '订单信息',
'width' => 100,
'order'=>30,
),
'new_order_detail' =>
array(
'type' => 'longtext',
'required' => false,
'editable' => false,
'label' => '新订单信息',
'width' => 100,
'order'=>30,
),
'dateline' => array(
'type' => 'time',
'default' => '0',
'required' => true,
'label' => '添加日期',
'filtertype' => 'time',
'filterdefault' => true,
'in_list' => true,
'default_in_list' => true,
'width' => 130,
'order'=>80,
),
),
'index' => array(
'retrial_id' => array('columns' => array('retrial_id')),
'order_id' => array('columns' => array('order_id')),
),
'comment' => '复审订单快照表',
'engine' => 'innodb',
'version' => '$Rev: $',
);