mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
91 lines
2.0 KiB
PHP
91 lines
2.0 KiB
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
$db['smslog'] = array (
|
||
'columns' => array(
|
||
'id' => array(
|
||
'type' => 'int unsigned',
|
||
'required' => true,
|
||
'pkey' => true,
|
||
'extra' => 'auto_increment',
|
||
'editable' => false,
|
||
),
|
||
'batchno' => array(
|
||
'type' => 'int(11)',
|
||
'required' => true,
|
||
'comment' => '批号',
|
||
),
|
||
'deliverybn' => array(
|
||
'type' => 'varchar(50)',
|
||
'required' => true,
|
||
'in_list'=>true,
|
||
'label' => '发货单号',
|
||
'default_in_list'=>true,
|
||
'filtertype'=>true,
|
||
'searchtype'=>true,
|
||
'searchtype' => 'has',
|
||
),
|
||
'logino' => array(
|
||
'type' => 'varchar(50)',
|
||
'required' => true,
|
||
'in_list'=>true,
|
||
'label' => '快递单号',
|
||
'default_in_list'=>true,
|
||
'filtertype'=>true,
|
||
'searchtype'=>true,
|
||
'searchtype' => 'has',
|
||
),
|
||
'mobile' => array(
|
||
'type' => 'varchar(50)',
|
||
'label' => '手机号码',
|
||
'required' => true,
|
||
'in_list'=>true,
|
||
'default_in_list'=>true,
|
||
'filtertype'=>true,
|
||
'searchtype'=>true,
|
||
'searchtype' => 'has',
|
||
),
|
||
'content' => array(
|
||
'type' => 'varchar(250)',
|
||
'required' => true,
|
||
'comment' => '短信内容',
|
||
),
|
||
'status' => array(
|
||
'default' => '1',
|
||
'type' => array(
|
||
'0' => '发送失败',
|
||
'1' => '发送成功'
|
||
),
|
||
'required' => true,
|
||
'label' => '发送状态',
|
||
'in_list'=>true,
|
||
'default_in_list'=>true,
|
||
'filtertype'=>true,
|
||
'searchtype'=>true,
|
||
'searchtype' => 'has',
|
||
),
|
||
'msg' => array(
|
||
'type' => 'text',
|
||
'label' => '原因',
|
||
'in_list'=>true,
|
||
'default_in_list'=>true,
|
||
'filtertype'=>true,
|
||
),
|
||
'sendtime' => array(
|
||
'type' => 'time',
|
||
'required' => true,
|
||
'label' => '发送时间',
|
||
'in_list'=>true,
|
||
'default_in_list'=>true,
|
||
'filtertype'=>true,
|
||
'searchtype'=>true,
|
||
'searchtype' => 'has',
|
||
)
|
||
),
|
||
'comment' => '短信日志',
|
||
'version' => '$Rev: 44513 $',
|
||
);
|