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

28 lines
594 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.
*/
$db['branch_area']=array (
'columns' =>
array (
'branch_id' =>
array (
'type' => 'table:branch@ome',
'required' => true,
'pkey' => true,
'editable' => false,
),
'region_id' =>
array (
'type' => 'table:regions@eccommon',
'required' => true,
'pkey' => true,
'editable' => false,
),
),
'comment' => '发货点和地区对应关系表',
'engine' => 'innodb',
'version' => '$Rev: $',
);