118 lines
2.9 KiB
PHP
118 lines
2.9 KiB
PHP
<?php
|
|
declare (strict_types = 1);
|
|
|
|
namespace app\model;
|
|
|
|
use app\exception\ModelException;
|
|
use app\exception\ModelEmptyException;
|
|
|
|
/**
|
|
* @mixin \think\Model
|
|
*/
|
|
class Role extends Model
|
|
{
|
|
|
|
public function website(): \think\model\relation\BelongsToMany
|
|
{
|
|
return $this->belongsToMany(Website::class);
|
|
}
|
|
|
|
/**
|
|
* @param array $where
|
|
* @return array
|
|
* @throws ModelException
|
|
*/
|
|
public function getRoleList(array $where = [],$order = 'id desc'): array
|
|
{
|
|
try{
|
|
$res = $this->where($where)->order($order)->select();
|
|
}catch(\Exception $e){
|
|
throw new ModelException($e->getMessage());
|
|
}
|
|
return dataReturn($this->sucCode,lang('保存成功'),$res);
|
|
}
|
|
|
|
/**
|
|
* @param array $where
|
|
* @return array
|
|
* @throws ModelEmptyException
|
|
* @throws ModelException
|
|
*/
|
|
public function getRole(array $where = [],$with = []): array
|
|
{
|
|
try{
|
|
$res = $this->with($with)->where($where)->find();
|
|
if(empty($res)){
|
|
throw new ModelEmptyException();
|
|
}
|
|
}catch(ModelEmptyException $me){
|
|
throw new ModelEmptyException();
|
|
}catch(\Exception $e){
|
|
throw new ModelException($e->getMessage());
|
|
}
|
|
return dataReturn($this->sucCode,$this->getMsg,$res);
|
|
|
|
}
|
|
|
|
/**
|
|
* @param $param
|
|
* @return array
|
|
* @throws ModelException
|
|
*/
|
|
public function addRole($param): array
|
|
{
|
|
try{
|
|
$res = self::create($param);
|
|
}catch(\Exception $e){
|
|
throw new ModelException($e->getMessage());
|
|
}
|
|
return dataReturn($this->sucCode,$this->addMsg,$res->id);
|
|
}
|
|
|
|
/**
|
|
* @param array $where
|
|
* @param array $param
|
|
* @return array
|
|
* @throws ModelException
|
|
*/
|
|
public function updateRole(array $where = [],array $param = []): array
|
|
{
|
|
try{
|
|
$res = self::where($where)->update($param);
|
|
}catch(\Exception $e){
|
|
throw new ModelException($e->getMessage());
|
|
}
|
|
return dataReturn($this->sucCode,$this->updateMsg,$res);
|
|
}
|
|
|
|
/**
|
|
* @param $where
|
|
* @return array
|
|
* @throws ModelException
|
|
*/
|
|
public function softDelRole($where): array
|
|
{
|
|
try{
|
|
$res = $this->where($where)->update($this->delData);
|
|
}catch(\Exception $e){
|
|
throw new ModelException($e->getMessage());
|
|
}
|
|
return dataReturn($this->sucCode,$this->delMsg,$res);
|
|
}
|
|
|
|
/**
|
|
* @param $where
|
|
* @return array
|
|
* @throws ModelException
|
|
*/
|
|
public function delRole($where): array
|
|
{
|
|
try{
|
|
$res = $this->where($where)->delete();
|
|
}catch(\Exception $e){
|
|
throw new ModelException($e->getMessage());
|
|
}
|
|
return dataReturn($this->sucCode,$this->delMsg,$res);
|
|
}
|
|
}
|