You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
108 lines
3.1 KiB
108 lines
3.1 KiB
6 months ago
|
<?php
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | Author: CRMEB Team <admin@crmeb.com>
|
||
|
// +----------------------------------------------------------------------
|
||
|
|
||
|
namespace app\dao\system\admin;
|
||
|
|
||
|
use app\dao\BaseDao;
|
||
|
use app\model\system\admin\SystemAdmin;
|
||
|
|
||
|
/**
|
||
|
* Class SystemAdminDao
|
||
|
* @package app\dao\system\admin
|
||
|
*/
|
||
|
class SystemAdminDao extends BaseDao
|
||
|
{
|
||
|
protected function setModel(): string
|
||
|
{
|
||
|
return SystemAdmin::class;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 获取管理员列表
|
||
|
* @param array $where
|
||
|
* @param int $page
|
||
|
* @param int $limit
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function getList(array $where, int $page, int $limit)
|
||
|
{
|
||
|
return $this->search($where)->page($page, $limit)->select()->toArray();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 用管理员名查找管理员信息
|
||
|
* @param string $account
|
||
|
* @return array|\think\Model|null
|
||
|
* @throws \think\db\exception\DataNotFoundException
|
||
|
* @throws \think\db\exception\DbException
|
||
|
* @throws \think\db\exception\ModelNotFoundException
|
||
|
*/
|
||
|
public function accountByAdmin(string $account)
|
||
|
{
|
||
|
return $this->search(['account' => $account, 'is_del' => 0])->find();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 当前账号是否可用
|
||
|
* @param string $account
|
||
|
* @param int $id
|
||
|
* @return int
|
||
|
*/
|
||
|
public function isAccountUsable(string $account, int $id)
|
||
|
{
|
||
|
return $this->search(['account' => $account, 'is_del' => 0])->where('id', '<>', $id)->count();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 获取adminid
|
||
|
* @param int $level
|
||
|
* @return array
|
||
|
*/
|
||
|
public function getAdminIds(int $level)
|
||
|
{
|
||
|
return $this->getModel()->where('level', '>=', $level)->column('id', 'id');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 获取低于等级的管理员名称和id
|
||
|
* @param string $field
|
||
|
* @param int $level
|
||
|
* @return array
|
||
|
* @throws \think\db\exception\DataNotFoundException
|
||
|
* @throws \think\db\exception\DbException
|
||
|
* @throws \think\db\exception\ModelNotFoundException
|
||
|
*/
|
||
|
public function getOrdAdmin(string $field = 'real_name,id', int $level = 0)
|
||
|
{
|
||
|
return $this->getModel()->where('level', '>=', $level)->field($field)->select()->toArray();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 条件获取管理员数据
|
||
|
* @param $where
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function getInfo($where)
|
||
|
{
|
||
|
return $this->getModel()->where($where)->find();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 检测是否有管理员使用该角色
|
||
|
* @param int $id
|
||
|
* @return bool
|
||
|
*/
|
||
|
public function checkRoleUse(int $id): bool
|
||
|
{
|
||
|
return (bool)$this->getModel()->where('is_del', 0)->whereFindInSet('roles', $id)->count();
|
||
|
}
|
||
|
}
|