mirror of
https://gitee.com/ulthon/ulthon_information.git
synced 2026-03-03 16:24:28 +08:00
27 lines
322 B
PHP
27 lines
322 B
PHP
<?php
|
|
|
|
namespace app\model;
|
|
|
|
use think\Model;
|
|
|
|
/**
|
|
* 权限表
|
|
* @mixin think\Model
|
|
*/
|
|
class AdminPermission extends Model
|
|
{
|
|
//
|
|
|
|
public function getIsLogAttr($value)
|
|
{
|
|
$status = [
|
|
0=>'不记录',
|
|
1=>'记录',
|
|
];
|
|
|
|
return $status[intval($value)];
|
|
}
|
|
|
|
|
|
}
|