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

57 lines
1.9 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['tmc_notify'] = array(
'columns' => array(
'id' => array(
'type' => 'bigint unsigned',
'extra' => 'auto_increment',
'pkey' => true,
'editable' => false,
'label' => '自增ID',
),
'tmc_key' => array(
'type' => 'varchar(255)',
'label' => '存储索引',
'default' => '',
),
'tid' => array(
'type' => 'varchar(255)',
'label' => '订单号',
'default' => '',
),
'oid' => array(
'type' => 'varchar(255)',
'label' => '子单号',
'default' => '',
),
'sdf' => array(
'type' => 'text',
'label' => '消息通知内容',
'default' => '',
),
'at_time' => array(
'type' => 'TIMESTAMP',
'label' => '创建时间',
'default' => 'CURRENT_TIMESTAMP',
),
'up_time' => array(
'type' => 'TIMESTAMP',
'label' => '更新时间',
'default' => 'CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP',
),
),
'index' => array(
'idx_tmc_key' => array('columns' => array('tmc_key')),
'idx_tid' => array('columns' => array('tid')),
'idx_at_time' => array('columns' => array('at_time')),
'idx_up_time' => array('columns' => array('up_time')),
),
'comment' => 'tmc 消息通知',
'engine' => 'innodb',
'version' => '$Rev: 41996 $',
);