Files
account/app/Models/System/DictGroup.php
2026-01-18 09:52:48 +08:00

26 lines
851 B
PHP

<?php
// +----------------------------------------------------------------------
// | SentCMS [ WE CAN DO IT JUST THINK IT ]
// +----------------------------------------------------------------------
// | Copyright (c) 2024 http://www.tensent.cn All rights reserved.
// +----------------------------------------------------------------------
// | Author: molong <molong@tensent.cn> <http://www.tensent.cn>
// +----------------------------------------------------------------------
namespace App\Models\System;
class DictGroup extends \App\Models\BaseModel {
protected $table = 'system_dict_groups';
protected $fillable = ['title', 'name', 'parent_id', 'sort', 'status'];
protected $hidden = ['deleted_at'];
protected function casts(): array {
return [
'parent_id' => 'integer',
'status' => 'integer',
'sort' => 'integer',
];
}
}