catchAdmin/catch/sms/model/SmsTemplate.php
2020-09-17 21:14:00 +08:00

37 lines
1.1 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
// +----------------------------------------------------------------------
// | CatchAdmin [Just Like ]
// +----------------------------------------------------------------------
// | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
// +----------------------------------------------------------------------
// | Author: JaguarJack [ njphper@gmail.com ]
// +----------------------------------------------------------------------
namespace catchAdmin\sms\model;
use catchAdmin\sms\model\search\SmsTemplateSearch;
use catcher\base\CatchModel as Model;
class SmsTemplate extends Model
{
use SmsTemplateSearch;
protected $name = 'sms_template';
protected $field = [
'id', //
'operator', // 运营商
'name', // 模版名称
'identify', // 模版标识
'code', // 模版CODE
'creator_id', // 创建人ID
'created_at', // 创建时间
'updated_at', // 更新时间
'deleted_at', // 软删除
];
protected $paginate = false;
}