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

33 lines
816 B
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.
*/
/**
* 售后换出福袋货品的规则关系表
* 20180409 by wangjianjun
*/
$db['luckybag_rule_reship_item'] = array (
'columns' => array(
'reship_item_id' => array(
'type' => 'number',
'required' => true,
'label' => '换货明细ID',
'editable' => false,
),
'lbr_id' => array(
'type' => 'int unsigned',
'required' => true,
'label' => '福袋规则ID',
'editable' => false,
),
),
'index' => array(
'ind_reship_item_id' => array('columns' => array(0 => 'reship_item_id')),
),
'comment' => '售后换出福袋货品的规则关系表',
'engine' => 'innodb',
'version' => '$Rev: $',
);