mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-08 07:25:35 +08:00
66 lines
1.7 KiB
PHP
66 lines
1.7 KiB
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
$db['goods'] = array(
|
||
'columns' => array(
|
||
'id' => array(
|
||
'type' => 'mediumint(8)',
|
||
'required' => true,
|
||
'pkey' => true,
|
||
'extra' => 'auto_increment',
|
||
'label' => '经销商货品ID',
|
||
),
|
||
'bs_id' => array(
|
||
'type' => 'mediumint(8)',
|
||
'required' => true,
|
||
'label' => '经销商ID',
|
||
),
|
||
'bm_id' => array(
|
||
'type' => 'int unsigned',
|
||
'required' => true,
|
||
'label' => '货品ID',
|
||
),
|
||
'cost' => array (
|
||
'type' => 'money',
|
||
'required' => true,
|
||
'label' => '成本价',
|
||
'editable' => false,
|
||
'in_list' => true,
|
||
'default_in_list' => true,
|
||
),
|
||
'create_time' => array (
|
||
'type' => 'time',
|
||
'label' => '创建时间',
|
||
'editable' => false,
|
||
'in_list' => true,
|
||
'default_in_list' => true,
|
||
),
|
||
'modify_time' => array (
|
||
'type' => 'time',
|
||
'label' => '修改时间',
|
||
'editable' => false,
|
||
'in_list' => true,
|
||
'default_in_list' => true,
|
||
),
|
||
),
|
||
'index' => array (
|
||
'ind_bs_bm_id' => array (
|
||
'columns' => array (
|
||
'bs_id',
|
||
'bm_id',
|
||
),
|
||
'prefix' => 'unique'
|
||
),
|
||
'ind_bm_id' => array (
|
||
'columns' => array (
|
||
'bm_id',
|
||
),
|
||
),
|
||
),
|
||
'comment' => '经销商货品',
|
||
'engine' => 'innodb',
|
||
'version' => '$Rev: $',
|
||
); |