mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
87 lines
1.8 KiB
PHP
87 lines
1.8 KiB
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
|
||
$db['currency']=array (
|
||
'columns' =>
|
||
array (
|
||
'cur_id' =>
|
||
array (
|
||
'type' => 'int(8)',
|
||
'required' => true,
|
||
'pkey' => true,
|
||
'label' => '货币ID',
|
||
'editable' => false,
|
||
'extra' => 'auto_increment',
|
||
'in_list' => false,
|
||
),
|
||
'cur_name' =>
|
||
array (
|
||
'type' => 'varchar(20)',
|
||
'required' => true,
|
||
'default' => '',
|
||
'label' => '货币名称',
|
||
'editable' => true,
|
||
'in_list' => true,
|
||
'default_in_list' => true,
|
||
),
|
||
'cur_sign' =>
|
||
array (
|
||
'type' => 'varchar(5)',
|
||
'label' => '货币符号',
|
||
'editable' => true,
|
||
'in_list' => true,
|
||
'default_in_list' => true,
|
||
),
|
||
'cur_code' =>
|
||
array (
|
||
'type' => 'varchar(8)',
|
||
'required' => true,
|
||
'default' => '',
|
||
'label' => '货币代码',
|
||
'editable' => false,
|
||
'in_list' => true,
|
||
'is_title' => true,
|
||
'default_in_list' => true,
|
||
),
|
||
|
||
|
||
'cur_rate' =>
|
||
array (
|
||
'type' => 'decimal(10,4)',
|
||
'default' => '1.0000',
|
||
'required' => true,
|
||
'label' => '汇率',
|
||
'editable' => true,
|
||
'in_list' => true,
|
||
'default_in_list' => true,
|
||
),
|
||
'cur_default' =>
|
||
array (
|
||
'type' => 'bool',
|
||
'default' => 'false',
|
||
'required' => true,
|
||
'label' => '默认货币',
|
||
'in_list' => true,
|
||
'default_in_list' => true,
|
||
),
|
||
),
|
||
'label' => '货币',
|
||
'index' =>
|
||
array (
|
||
'uni_ident_type' =>
|
||
array (
|
||
'columns' =>
|
||
array (
|
||
0 => 'cur_code',
|
||
),
|
||
'prefix' => 'UNIQUE',
|
||
),
|
||
),
|
||
'comment' => '电商商务通用应用货币表',
|
||
'version' => '$Rev: 40654 $',
|
||
);
|