120 lines
3.1 KiB
PHP
120 lines
3.1 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
||
// +----------------------------------------------------------------------
|
||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||
// | 开源版本可自由商用,可去除界面版权logo
|
||
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
||
// | github下载:https://github.com/likeshop-github/likeadmin
|
||
// | 访问官网:https://www.likeadmin.cn
|
||
// | likeadmin团队 版权所有 拥有最终解释权
|
||
// +----------------------------------------------------------------------
|
||
// | author: likeadminTeam
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\adminapi\validate\supervision_project;
|
||
|
||
|
||
use app\common\model\supervision_project\SupervisionMonitoringEquipment;
|
||
use app\common\model\supervision_project\SupervisionMonitoringEquipmentDetail;
|
||
use app\common\validate\BaseValidate;
|
||
|
||
|
||
/**
|
||
* 工程监理--监控设备明细验证器
|
||
* Class SupervisionMonitoringEquipmentDetailValidate
|
||
* @package app\adminapi\validate\supervision_project
|
||
*/
|
||
class SupervisionMonitoringEquipmentDetailValidate extends BaseValidate
|
||
{
|
||
|
||
/**
|
||
* 设置校验规则
|
||
* @var string[]
|
||
*/
|
||
protected $rule = [
|
||
'id' => 'require|checkData',
|
||
'device_id' => 'require|checkDevice',
|
||
'name' => 'require',
|
||
'is_show' => 'require|in:0,1',
|
||
];
|
||
|
||
|
||
/**
|
||
* 参数描述
|
||
* @var string[]
|
||
*/
|
||
protected $field = [
|
||
'id' => 'id',
|
||
'device_id' => '设备信息id',
|
||
'name' => '设备名称',
|
||
'is_show' => '是否显示',
|
||
];
|
||
|
||
|
||
/**
|
||
* @notes 添加场景
|
||
* @return SupervisionMonitoringEquipmentDetailValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/23 15:20
|
||
*/
|
||
public function sceneAdd()
|
||
{
|
||
return $this->only(['device_id','name','is_show']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 编辑场景
|
||
* @return SupervisionMonitoringEquipmentDetailValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/23 15:20
|
||
*/
|
||
public function sceneEdit()
|
||
{
|
||
return $this->only(['id','device_id','name','is_show']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 删除场景
|
||
* @return SupervisionMonitoringEquipmentDetailValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/23 15:20
|
||
*/
|
||
public function sceneDelete()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 详情场景
|
||
* @return SupervisionMonitoringEquipmentDetailValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/23 15:20
|
||
*/
|
||
public function sceneDetail()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
public function checkData($value): bool|string
|
||
{
|
||
$data = SupervisionMonitoringEquipmentDetail::where('id',$value)->findOrEmpty();
|
||
if($data->isEmpty()){
|
||
return '数据不存在';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkDevice($value): bool|string
|
||
{
|
||
$data = SupervisionMonitoringEquipment::where('id',$value)->findOrEmpty();
|
||
if($data->isEmpty()){
|
||
return '监控设备信息不存在';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
} |