| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- namespace App\Module\Dev\Models;
- use Illuminate\Database\Eloquent\Model;
- /**
- * 开发配置模型
- *
- * @property int $id ID
- * @property string $key 配置键
- * @property string $value 配置值
- * @property string $description 描述
- * @property int $status 状态
- * @property \Carbon\Carbon $created_at 创建时间
- * @property \Carbon\Carbon $updated_at 更新时间
- */
- class DevConfig extends Model
- {
- /**
- * 表名
- *
- * @var string
- */
- protected $table = 'dev_configs';
- /**
- * 可批量赋值的属性
- *
- * @var array
- */
- protected $fillable = [
- 'key',
- 'value',
- 'description',
- 'status',
- ];
- /**
- * 日期字段
- *
- * @var array
- */
- protected $dates = [
- 'created_at',
- 'updated_at',
- ];
- /**
- * 属性类型转换
- *
- * @var array
- */
- protected $casts = [
- 'status' => 'integer',
- ];
- }
|