Files
OMS/app/taoexlib/dbschema/smslog.php
2025-12-28 23:13:25 +08:00

91 lines
2.0 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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 $',
);