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

17 lines
687 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 Area extends \App\Models\BaseModel {
protected $table = 'system_areas';
protected $fillable = ['title', 'parent_id', 'status'];
protected $hidden = ['deleted_at'];
}