87 lines
1.7 KiB
PHP
87 lines
1.7 KiB
PHP
<?php
|
|
|
|
|
|
|
|
|
|
namespace app\common\model\system\admin;
|
|
|
|
use app\common\model\BaseModel;
|
|
use app\common\model\system\auth\Role;
|
|
use app\model\supplier\SystemSupplier;
|
|
|
|
class Admin extends BaseModel
|
|
{
|
|
/**
|
|
* @return string
|
|
* @author xaboy
|
|
* @day 2020-03-30
|
|
*/
|
|
public static function tablePk(): string
|
|
{
|
|
return 'admin_id';
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
* @author xaboy
|
|
* @day 2020-03-30
|
|
*/
|
|
public static function tableName(): string
|
|
{
|
|
return 'system_admin';
|
|
}
|
|
|
|
/**
|
|
* @param $value
|
|
* @return array
|
|
* @author xaboy
|
|
* @day 2020-03-30
|
|
*/
|
|
public function getRolesAttr($value)
|
|
{
|
|
return array_map('intval', explode(',', $value));
|
|
}
|
|
|
|
/**
|
|
* @param $value
|
|
* @return string
|
|
* @author xaboy
|
|
* @day 2020-03-30
|
|
*/
|
|
public function setRolesAttr($value)
|
|
{
|
|
return implode(',', $value);
|
|
}
|
|
|
|
/**
|
|
* @param bool $isArray
|
|
* @return array|string
|
|
* @author xaboy
|
|
* @day 2020-04-09
|
|
*/
|
|
public function roleNames($isArray = false)
|
|
{
|
|
$roleNames = Role::getDB()->whereIn('role_id', $this->roles)->column('role_name');
|
|
return $isArray ? $roleNames : implode(',', $roleNames);
|
|
}
|
|
|
|
public function searchRealNameAttr($query,$value)
|
|
{
|
|
$query->whereLike('real_name',"%{$value}%");
|
|
}
|
|
|
|
/**
|
|
* 供应商
|
|
* @return \think\model\relation\HasOne
|
|
*/
|
|
public function supplier()
|
|
{
|
|
return $this->hasOne(SystemSupplier::class, 'admin_id', 'admin_id')->field(['id', 'supplier_name', 'admin_id', 'avatar', 'is_show'])->bind([
|
|
'supplier_id' => 'id',
|
|
'supplier_name',
|
|
'avatar',
|
|
'is_show'
|
|
]);
|
|
}
|
|
}
|