111 lines
2.4 KiB
PHP
111 lines
2.4 KiB
PHP
<?php
|
|
|
|
namespace app\common\model\user;
|
|
|
|
use think\Hook;
|
|
use app\common\model\BaseModel;
|
|
|
|
/**
|
|
* 用户会员等级模型
|
|
* Class Grade
|
|
* @package app\common\model\user
|
|
*/
|
|
class Grade extends BaseModel
|
|
{
|
|
protected $name = 'user_grade';
|
|
|
|
/**
|
|
* 订单模型初始化
|
|
*/
|
|
public static function init()
|
|
{
|
|
parent::init();
|
|
// 监听订单处理事件
|
|
$static = new static;
|
|
Hook::listen('user_grade', $static);
|
|
}
|
|
|
|
/**
|
|
* 获取器:升级条件
|
|
* @param $json
|
|
* @return mixed
|
|
*/
|
|
public function getUpgradeAttr($json)
|
|
{
|
|
return json_decode($json, true);
|
|
}
|
|
|
|
/**
|
|
* 获取器:等级权益
|
|
* @param $json
|
|
* @return mixed
|
|
*/
|
|
public function getEquityAttr($json)
|
|
{
|
|
return json_decode($json, true);
|
|
}
|
|
|
|
/**
|
|
* 修改器:升级条件
|
|
* @param $data
|
|
* @return mixed
|
|
*/
|
|
public function setUpgradeAttr($data)
|
|
{
|
|
return json_encode($data);
|
|
}
|
|
|
|
/**
|
|
* 修改器:等级权益
|
|
* @param $data
|
|
* @return mixed
|
|
*/
|
|
public function setEquityAttr($data)
|
|
{
|
|
return json_encode($data);
|
|
}
|
|
|
|
/**
|
|
* 会员等级详情
|
|
* @param $grade_id
|
|
* @param array $with
|
|
* @return static|null
|
|
* @throws \think\exception\DbException
|
|
*/
|
|
public static function detail($grade_id, $with = [])
|
|
{
|
|
return static::get($grade_id, $with);
|
|
}
|
|
|
|
/**
|
|
* 获取可用的会员等级列表
|
|
* @param null $wxappId
|
|
* @param array $order 排序规则
|
|
* @return false|\PDOStatement|string|\think\Collection
|
|
*/
|
|
public static function getUsableList($wxappId = null, $order = ['weight' => 'asc'])
|
|
{
|
|
$model = new static;
|
|
$wxappId = $wxappId ? $wxappId : $model::$wxapp_id;
|
|
return $model->where('status', '=', '1')
|
|
->where('is_delete', '=', '0')
|
|
->where('wxapp_id', '=', $wxappId)
|
|
->order($order)
|
|
->select();
|
|
}
|
|
|
|
/**
|
|
* 验证等级权重是否存在
|
|
* @param int $weight 验证的权重
|
|
* @param int $gradeId 自身的等级ID
|
|
* @return bool
|
|
*/
|
|
public static function checkExistByWeight($weight, $gradeId = 0)
|
|
{
|
|
$model = new static;
|
|
$gradeId > 0 && $model->where('grade_id', '<>', (int)$gradeId);
|
|
return $model->where('weight', '=', (int)$weight)
|
|
->value('grade_id');
|
|
}
|
|
|
|
} |