推进管理员管理和权限管理

This commit is contained in:
augushong
2019-09-04 13:25:48 +08:00
parent 0ddbf60878
commit ee2c8bf106
16 changed files with 658 additions and 23 deletions

16
app/model/AdminGroup.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
namespace app\model;
use think\Model;
use think\model\concern\SoftDelete;
/**
* @mixin think\Model
*/
class AdminGroup extends Model
{
//
use SoftDelete;
protected $defaultSoftDelete = 0;
}