mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
75 lines
1.6 KiB
PHP
75 lines
1.6 KiB
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
$db['sfcity_code']=array (
|
||
'columns' =>
|
||
array (
|
||
'id' =>
|
||
array (
|
||
'type' => 'number',
|
||
'required' => true,
|
||
'pkey' => true,
|
||
'editable' => false,
|
||
'extra' => 'auto_increment',
|
||
),
|
||
'province' =>
|
||
array (
|
||
'type' => 'varchar(50)',
|
||
'editable' => false,
|
||
'label' => '省',
|
||
'width' => 130,
|
||
'in_list' => true,
|
||
'default_in_list' => true,
|
||
'order' => 10,
|
||
),
|
||
'city' =>
|
||
array (
|
||
'type' => 'varchar(50)',
|
||
'editable' => false,
|
||
'label' => '市',
|
||
'width' => 130,
|
||
'searchtype' => 'has',
|
||
'in_list' => true,
|
||
'default_in_list' => true,
|
||
'order' => 20,
|
||
),
|
||
'city_crc32' =>
|
||
array (
|
||
'type' => 'bigint(13)',
|
||
'required' => true,
|
||
'default' => 0,
|
||
'editable' => false,
|
||
'label' => '市级crc32值',
|
||
'width' => 100,
|
||
'in_list' => true,
|
||
'default_in_list' => true,
|
||
'order' => 30,
|
||
),
|
||
'city_code' =>
|
||
array (
|
||
'type' => 'varchar(10)',
|
||
'required' => true,
|
||
'default' => '',
|
||
'editable' => false,
|
||
'label' => '城市代码',
|
||
'width' => 100,
|
||
'in_list' => true,
|
||
'default_in_list' => true,
|
||
'order' => 40,
|
||
),
|
||
),
|
||
'index' =>
|
||
array (
|
||
'ind_city_crc32' => array (
|
||
'columns' => array (
|
||
0 => 'city_crc32',
|
||
),
|
||
),
|
||
),
|
||
'comment' => '顺丰城市代码表',
|
||
'engine' => 'innodb',
|
||
'version' => '$Rev: $',
|
||
); |