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.
crmeb_php/app/common/repositories/system/admin/PartnerRepository.php

120 lines
2.9 KiB

12 months ago
<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace app\common\repositories\system\admin;
//附件
use app\common\dao\system\admin\PartnerDao;
use app\common\model\system\admin\Partner;
use app\common\repositories\BaseRepository;
use app\common\repositories\system\auth\RoleRepository;
use crmeb\exceptions\AuthException;
use crmeb\services\JwtTokenService;
use FormBuilder\Exception\FormBuilderException;
use FormBuilder\Factory\Elm;
use FormBuilder\Form;
use think\db\exception\DataNotFoundException;
use think\db\exception\DbException;
use think\db\exception\ModelNotFoundException;
use think\exception\ValidateException;
use think\facade\Cache;
use think\facade\Config;
use think\facade\Route;
use think\Model;
/**
* Class BaseRepository
* @package common\repositories
* @mixin AdminDao
*/
class PartnerRepository extends BaseRepository
{
public function __construct(PartnerDao $dao)
{
/**
* @var AdminDao
*/
$this->dao = $dao;
}
12 months ago
12 months ago
/**
* @param array $where
* @param $page
* @param $limit
* @return array
* @throws DataNotFoundException
* @throws DbException
* @throws ModelNotFoundException
*/
public function getList(array $where, $page, $limit)
{
$query = $this->dao->search($where);
$count = $query->count();
$list = $query->page($page, $limit)->select();
return compact('list', 'count');
}
public function create(array $data)
{
return $this->dao->create($data);
}
/**
12 months ago
* @param int $id
* @return Form
* @throws DataNotFoundException
* @throws DbException
* @throws FormBuilderException
* @throws ModelNotFoundException
* @author xaboy
* @day 2020-04-09
*/
public function getDetail(int $id)
{
return $this->dao->get($id)->toArray();
}
/**
*
12 months ago
* 更新
* @param int $id id
* @param array $data 数组
* @return int
* @throws DbException
* @author 张先生
* @date 2020-03-26
*/
public function update(int $id, array $data)
{
return $this->dao->update($id, $data);
}
12 months ago
//删除
public function delete(int $id)
{
return $this->dao->delete($id);
}
12 months ago
12 months ago
//检测角色绑定用户
public function existsUser(int $id)
{
return $this->dao->existsUser($id);
}
12 months ago
}