first commot

This commit is contained in:
2026-01-26 09:29:36 +08:00
commit dbb40c38c4
189 changed files with 20198 additions and 0 deletions
+48
View File
@@ -0,0 +1,48 @@
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006-2018 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: Liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
namespace app\model;
use think\Model;
use think\model\concern\SoftDelete;
/**
* 系统菜单模型
*/
class SystemMenu extends Model
{
// 启用软删除
use SoftDelete;
// 数据库表名
protected $name = 'mete_system_menu';
// 字段类型转换
protected $type = [
'id' => 'integer',
'pid' => 'integer',
'title' => 'string',
'path' => 'string',
'component_path' => 'string',
'icon' => 'string',
'sort' => 'integer',
'status' => 'integer',
'type' => 'integer',
'permission' => 'string',
'remark' => 'string',
'creater' => 'string',
'create_time' => 'datetime',
'update_time' => 'datetime',
'delete_time' => 'datetime',
];
}