| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- namespace App\Module\Sms\Models;
- use UCore\ModelCore;
- use UCore\Model;
- /**
- * 短信配置模型
- *
- * field start
- * field end
- */
- class SmsConfig extends ModelCore
- {
- /**
- * 数据表名称
- *
- * @var string
- */
- protected $table = 'sms_config';
- /**
- * 可批量赋值的属性
- *
- * @var array
- */
- protected $fillable = [
- 'driver',
- 'is_open',
- 'title',
- 'desc',
- 'type',
- 'value',
- 'group'
- ];
- /**
- * 应该被调整为日期的属性
- *
- * @var array
- */
- protected $dates = [
- 'created_at',
- 'updated_at'
- ];
- /**
- * 属性类型转换
- *
- * @var array
- */
- protected $casts = [
- 'type' => 'integer',
- 'is_open' => 'boolean'
- ];
- }
|