mirror of
https://github.com/netcccyun/dnsmgr.git
synced 2026-02-21 15:31:12 +08:00
feat(model): 添加 Permission 模型类
- 在 app/model 目录下创建 Permission.php 文件 - 定义 Permission 类,继承自 think\Model - 为权限管理功能提供模型支持
This commit is contained in:
parent
1c3087f54a
commit
1e37e3ef71
10
app/model/Permission.php
Normal file
10
app/model/Permission.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace app\model;
|
||||
|
||||
use think\Model;
|
||||
|
||||
class Permission extends Model
|
||||
{
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user