mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
39 lines
1007 B
PHP
39 lines
1007 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
$db['sms_sign'] = array (
|
||
'columns' => array(
|
||
's_id' => array(
|
||
'type' => 'int unsigned',
|
||
'required' => true,
|
||
'label' => '签名编号',
|
||
'pkey' => true,
|
||
'extra' => 'auto_increment',
|
||
'editable' => false,
|
||
),
|
||
'name' => array(
|
||
'type' => 'varchar(45)',
|
||
'required' => true,
|
||
'label' => "名称",
|
||
'default' =>'0',
|
||
'in_list'=>false,
|
||
'default_in_list'=>false,
|
||
'editable' => false,
|
||
),
|
||
'extend_no' => array(
|
||
'type' => 'varchar(45)',
|
||
'label' => '返回编号',
|
||
|
||
'default' =>'0',
|
||
'in_list'=>true,
|
||
'default_in_list'=>true,
|
||
),
|
||
|
||
),
|
||
'comment' => '短信验签表',
|
||
'version' => '$Rev: 44513 $',
|
||
);
|