2020-03-29 19:57:18 +08:00
|
|
|
<?php
|
|
|
|
namespace app\common\model;
|
|
|
|
|
|
|
|
use think\Model;
|
|
|
|
use think\model\concern\SoftDelete;
|
|
|
|
|
|
|
|
class UserViprule extends Model
|
|
|
|
{
|
|
|
|
protected $autoWriteTimestamp = true; //开启自动时间戳
|
|
|
|
protected $createTime = 'create_time';
|
|
|
|
|
|
|
|
|
|
|
|
//软删除
|
|
|
|
use SoftDelete;
|
|
|
|
protected $deleteTime = 'delete_time';
|
|
|
|
protected $defaultSoftDelete = 0;
|
|
|
|
|
|
|
|
public function user()
|
|
|
|
{
|
|
|
|
//评论关联用户
|
|
|
|
return $this->belongsTo('User','user_id','id');
|
|
|
|
}
|
|
|
|
|
2020-03-30 21:11:12 +08:00
|
|
|
//获取等级名
|
|
|
|
public function getVipAttr($value)
|
|
|
|
{
|
2024-04-01 10:17:53 +08:00
|
|
|
$vip = [0=>'普通',1=>'L1',2=>'L2',3=>'L3',4=>'L4',5=>'L5'];
|
2020-03-30 21:11:12 +08:00
|
|
|
return $vip[$value];
|
|
|
|
}
|
|
|
|
|
2020-03-29 19:57:18 +08:00
|
|
|
}
|