超级总管 - 登录返工

This commit is contained in:
柳清爽
2025-04-17 15:00:58 +08:00
parent 42e189ac01
commit 273b2f1e05
4 changed files with 153 additions and 5 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace app\common\model;
use think\Model;
/**
* 超级管理员模型类
*/
class Administrator extends Model
{
// 设置数据表名
protected $name = 'administrators';
// 隐藏字段
protected $hidden = [
'password'
];
}