mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 02:45:33 +08:00
38 lines
710 B
PHP
38 lines
710 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
$db['autobranch']=array (
|
||
'columns' =>
|
||
array (
|
||
'tid' =>
|
||
array (
|
||
'type' => 'number',
|
||
'required' => true,
|
||
'pkey' => true,
|
||
),
|
||
'bid' =>
|
||
array (
|
||
'type' => 'mediumint',
|
||
'required' => true,
|
||
'pkey' => true,
|
||
),
|
||
'weight'=>array(
|
||
'type' => 'tinyint',
|
||
'default'=>0,
|
||
|
||
),
|
||
'is_default' =>
|
||
array (
|
||
'type' => 'intbool',
|
||
'default' => '0',
|
||
'required' => true,
|
||
'editable' => false,
|
||
),
|
||
),
|
||
'comment' => '自动审单仓库规则',
|
||
'engine' => 'innodb',
|
||
'version' => '$Rev: $',
|
||
); |