mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 15:32:48 +08:00
29 lines
447 B
PHP
29 lines
447 B
PHP
<?php
|
|
|
|
|
|
namespace app\admin\model;
|
|
|
|
|
|
use app\common\model\TimeModel;
|
|
|
|
class SystemAdmin extends TimeModel
|
|
{
|
|
|
|
protected $deleteTime = 'delete_time';
|
|
|
|
public static $autoCache = [
|
|
[
|
|
'name' => 'info',
|
|
'field' => 'id'
|
|
]
|
|
];
|
|
|
|
public function getAuthList()
|
|
{
|
|
$list = (new SystemAuth())
|
|
->where('status', 1)
|
|
->column('title', 'id');
|
|
return $list;
|
|
}
|
|
}
|