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

71 lines
1.9 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['sms_bind'] = array (
'columns' => array(
'bind_id' => array(
'type' => 'int unsigned',
'required' => true,
'label' => '绑定编号',
'pkey' => true,
'extra' => 'auto_increment',
'editable' => false,
),
'tid' => array(
'type' => 'int(11)',
'required' => true,
'label' => "规则名称",
'default' =>'0',
'in_list'=>false,
'default_in_list'=>false,
'editable' => false,
),
'id' => array(
'type' => 'table:sms_sample@taoexlib',
'label' => '模板编号',
'required' => true,
'default' =>'0',
'in_list'=>true,
'default_in_list'=>true,
),
'is_default' => array(
'type' => array(
'0' => '否',
'1' => '是',
),
'required' => true,
'default' => '0',
'in_list'=>true,
'label' => '是否默认',
'default_in_list'=>true,
),
'is_send' => array(
'type' => array(
'0' => '不发送',
'1' => '发送',
),
'required' => true,
'default' => '1',
'in_list'=>true,
'label' => '是否发送',
'default_in_list'=>true,
),
'status' => array(
'type' => array(
'0' => '关闭',
'1' => '开启',
),
'required' => true,
'default' => '1',
'in_list'=>true,
'label' => '绑定状态',
'default_in_list'=>true,
),
),
'comment' => '发送设置',
'version' => '$Rev: 44513 $',
);