17 lines
687 B
PHP
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'];
|
|
}
|