TaoLer/app/common/model/UpgradeAuth.php

25 lines
540 B
PHP
Raw Permalink Normal View History

2020-01-01 13:17:19 +08:00
<?php
namespace app\common\model;
use think\Model;
use think\model\concern\SoftDelete;
class UpgradeAuth extends Model
{
//protected $pk = 'id'; //主键
protected $autoWriteTimestamp = true; //开启自动时间戳
protected $createTime = 'create_time';
//软删除
use SoftDelete;
protected $deleteTime = 'delete_time';
protected $defaultSoftDelete = 0;
public function getAuthLevelAttr($value)
{
2023-03-16 22:30:36 +08:00
$level = [0=>'免费', 1=>'初级', 2=>'中级', 3=>'高级'];
return $level[$value];
}
2020-01-01 13:17:19 +08:00
}