cms-manage/app/model/ModuleField.php

137 lines
3.3 KiB
PHP
Raw Permalink Normal View History

2025-02-13 08:21:56 +00:00
<?php
declare (strict_types = 1);
namespace app\model;
use app\exception\ModelException;
use app\exception\ModelEmptyException;
/**
* @mixin \think\Model
*/
class ModuleField extends Model
{
public function module(): \think\model\relation\BelongsTo
{
return $this->belongsTo(Module::class);
}
public function getSettingsAttr($value)
{
if($value){
return json_decode($value,true);
}
}
/**
* @param array $where
* @return array
* @throws ModelException
*/
public function getModuleFieldList(array $where = []): array
{
try{
$res = $this->where($where)->select();
}catch(\Exception $e){
throw new ModelException($e->getMessage());
}
return dataReturn($this->sucCode,$this->getMsg,$res);
}
/**
* @param array $where
* @return array
* @throws ModelEmptyException
* @throws ModelException
*/
public function getModuleField(array $where = [],$with = ['module']): 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);
}
public function getOnlyModuleField(array $where = [],$with = ['module']): array
{
try{
$res = $this->with($with)->where($where)->find();
}catch(\Exception $e){
throw new ModelException($e->getMessage());
}
return dataReturn($this->sucCode,$this->getMsg,$res);
}
/**
* @param $param
* @return array
* @throws ModelException
*/
public function addModuleField($param): array
{
try{
$res = self::create($param);
}catch(\Exception $e){
throw new ModelException($e->getMessage());
}
return dataReturn($this->sucCode,$this->addMsg,$res);
}
/**
* @param array $where
* @param array $param
* @return array
* @throws ModelException
*/
public function updateModuleField(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 softDelModuleField($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 delModuleField($where): array
{
try{
$res = $this->where($where)->delete();
}catch(\Exception $e){
throw new ModelException($e->getMessage());
}
return dataReturn($this->sucCode,$this->delMsg,$res);
}
}