120 lines
3.0 KiB
PHP
120 lines
3.0 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_work;
|
||
|
||
|
||
use app\common\model\supervision_work\SupervisionCheckItem;
|
||
use app\common\model\supervision_work\SupervisionCheckItemDetail;
|
||
use app\common\validate\BaseValidate;
|
||
|
||
|
||
/**
|
||
* 工程监理--新增检查项明细验证器
|
||
* Class SupervisionCheckItemDetailValidate
|
||
* @package app\adminapi\validate\supervision_work
|
||
*/
|
||
class SupervisionCheckItemDetailValidate extends BaseValidate
|
||
{
|
||
|
||
/**
|
||
* 设置校验规则
|
||
* @var string[]
|
||
*/
|
||
protected $rule = [
|
||
'id' => 'require|checkData',
|
||
'node_id' => 'require|checkNode',
|
||
'check_type' => 'require',
|
||
'check_content' => 'require',
|
||
'must_check' => 'require|in:0,1',
|
||
];
|
||
|
||
|
||
/**
|
||
* 参数描述
|
||
* @var string[]
|
||
*/
|
||
protected $field = [
|
||
'id' => 'id',
|
||
'node_id' => '节点id',
|
||
'check_type' => '检查类别',
|
||
'check_content' => '检查内容',
|
||
'must_check' => '是否必检',
|
||
];
|
||
|
||
|
||
/**
|
||
* @notes 添加场景
|
||
* @return SupervisionCheckItemDetailValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/26 15:34
|
||
*/
|
||
public function sceneAdd()
|
||
{
|
||
return $this->remove('id',true);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 编辑场景
|
||
* @return SupervisionCheckItemDetailValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/26 15:34
|
||
*/
|
||
public function sceneEdit()
|
||
{}
|
||
|
||
|
||
/**
|
||
* @notes 删除场景
|
||
* @return SupervisionCheckItemDetailValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/26 15:34
|
||
*/
|
||
public function sceneDelete()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 详情场景
|
||
* @return SupervisionCheckItemDetailValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/26 15:34
|
||
*/
|
||
public function sceneDetail()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
public function checkData($value): bool|string
|
||
{
|
||
$data = SupervisionCheckItemDetail::where('id',$value)->findOrEmpty();
|
||
if($data->isEmpty()){
|
||
return '数据不存在';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkNode($value): bool|string
|
||
{
|
||
$data = SupervisionCheckItem::where('id',$value)->findOrEmpty();
|
||
if($data->isEmpty()){
|
||
return '检查项节点信息不存在';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
} |