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

51 lines
1.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.
*/
$db['rule_items']=array (
'columns' =>
array (
'item_id' =>
array (
'type' => 'int unsigned',
'required' => true,
'pkey' => true,
'editable' => false,
'extra' => 'auto_increment',
),
'obj_id' =>
array (
'type' => 'table:rule_obj@logistics',
'required' => true,
'default' => 0,
'editable' => false,
'comment' => '规则对象ID',
),
'min_weight' =>
array (
'type' => 'number',
'editable' => false,
'comment' => '最小重量',
),
'max_weight' =>
array(
'type' => 'int',
'editable' => false,
'comment' => '最大重量',
),
'corp_id'=>array (
'type' => 'int',
'editable' => false,
'comment' => '物流公司ID',
),
'second_corp_id'=>array (
'type' => 'int',
'editable' => false,
),
),
'comment' => '规则明细',
'engine' => 'innodb',
'version' => '$Rev: $',
);