2023-03-16 13:05:59 +08:00

45 lines
1.0 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
declare (strict_types = 1);
/**
* 管理 model
* 说明: 店铺类型 相关(不同类型需要不同的保证金)
* @author刘孝全
* @emailq8197264@126.com
* @date 2023年03月3日
*/
namespace app\common\model\merchant\system\admin;
use think\Model;
use app\common\model\merchant\system\auth\Role;
/**
* @mixin \think\Model
*/
class Admin extends Model
{
protected $connection = 'shop';
protected $table = 'eb_system_admin';
protected $pk = 'admin_id';
public function getRolesAttr($value)
{
return array_map('intval', explode(',', $value));
}
public function setRolesAttr($value)
{
return implode(',', $value);
}
public function roleNames($isArray = false)
{
$roleNames = Role::whereIn('role_id', $this->roles)->column('role_name');
return $isArray ? $roleNames : implode(',', $roleNames);
}
public function searchRealNameAttr($query,$value)
{
$query->whereLike('real_name',"%{$value}%");
}
}