45 lines
1.0 KiB
PHP
45 lines
1.0 KiB
PHP
<?php
|
||
declare (strict_types = 1);
|
||
/**
|
||
* 管理 model
|
||
* 说明: 店铺类型 相关(不同类型需要不同的保证金)
|
||
* @author:刘孝全
|
||
* @email:q8197264@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}%");
|
||
}
|
||
}
|