mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 19:05:34 +08:00
30 lines
774 B
PHP
30 lines
774 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
$db['interval']=array (
|
||
'columns' => array (
|
||
'interval_id' => array (
|
||
'type' => 'number',
|
||
'required' => true,
|
||
'pkey' => true,
|
||
'extra' => 'auto_increment',
|
||
'editable' => false,
|
||
),
|
||
'from' => array (
|
||
'type' => 'int unsigned',
|
||
'label' => '起始价格',
|
||
'in_list' => true,
|
||
),
|
||
'to' => array (
|
||
'type' => 'int unsigned',
|
||
'label' => '截止价格',
|
||
'in_list' => true,
|
||
),
|
||
),
|
||
'comment' => '价格区间',
|
||
'engine' => 'innodb',
|
||
'version' => '$Rev: $',
|
||
); |