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

68 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['refund_no_order']=array (
'columns' =>
array (
'id' =>
array (
'type' => 'int unsigned',
'required' => true,
'pkey' => true,
'editable' => false,
'extra' => 'auto_increment',
),
'order_bn' =>
array (
'type' => 'varchar(32)',
'default' => '',
'commit' => '订单号',
'editable' => false,
),
'shop_id' =>
array (
'type' => 'table:shop@ome',
'default' => '',
'commit' => '店铺ID',
'editable' => false,
),
'refund_bn' =>
array (
'type' => 'varchar(32)',
'default' => '',
'commit' => '退款单号',
'editable' => false,
),
'status' =>
array (
'type' => 'varchar(64)',
'default' => '',
'commit' => '退款单状态',
'editable' => false,
),
'sdf' =>
array (
'type' => 'text',
'default' => '',
'commit' => '格式化后数据',
'editable' => false,
),
),
'comment' => '支付记录',
'index' =>
array (
'ind_order_bn' =>
array (
'columns' =>
array (
0 => 'order_bn',
),
),
),
'engine' => 'innodb',
'version' => '$Rev: 41103 $',
'commit' => '退款单无订单表'
);