131 lines
3.5 KiB
PHP
131 lines
3.5 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_dangerous;
|
||
|
||
|
||
use app\common\model\supervision_dangerous\SupervisionDangerousEngineeringCase;
|
||
use app\common\model\supervision_dangerous\SupervisionDangerousEngineeringMonitoring;
|
||
use app\common\validate\BaseValidate;
|
||
|
||
|
||
/**
|
||
* 工程监理--危大方案提交列表验证器
|
||
* Class SupervisionDangerousEngineeringCaseValidate
|
||
* @package app\adminapi\validate\supervision_dangerous
|
||
*/
|
||
class SupervisionDangerousEngineeringCaseValidate extends BaseValidate
|
||
{
|
||
|
||
/**
|
||
* 设置校验规则
|
||
* @var string[]
|
||
*/
|
||
protected $rule = [
|
||
'id' => 'require|checkData',
|
||
'dangerous_engineering_monitoring_id' => 'require|checkDangerousEngineeringMonitoring',
|
||
'case_name' => 'require',
|
||
'assessor' => 'require',
|
||
'review_content' => 'require',
|
||
'annex' => 'checkAnnex'
|
||
];
|
||
|
||
|
||
/**
|
||
* 参数描述
|
||
* @var string[]
|
||
*/
|
||
protected $field = [
|
||
'id' => 'id',
|
||
'dangerous_engineering_monitoring_id' => '危大工程监控id',
|
||
'case_name' => '方案名称',
|
||
'assessor' => '评审人员',
|
||
'review_content' => '评审内容',
|
||
'remark' => '备注',
|
||
'create_user' => '提交人',
|
||
];
|
||
|
||
|
||
/**
|
||
* @notes 添加场景
|
||
* @return SupervisionDangerousEngineeringCaseValidate
|
||
* @author likeadmin
|
||
* @date 2024/03/04 14:00
|
||
*/
|
||
public function sceneAdd()
|
||
{
|
||
return $this->remove('id',true);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 编辑场景
|
||
* @return SupervisionDangerousEngineeringCaseValidate
|
||
* @author likeadmin
|
||
* @date 2024/03/04 14:00
|
||
*/
|
||
public function sceneEdit()
|
||
{}
|
||
|
||
|
||
/**
|
||
* @notes 删除场景
|
||
* @return SupervisionDangerousEngineeringCaseValidate
|
||
* @author likeadmin
|
||
* @date 2024/03/04 14:00
|
||
*/
|
||
public function sceneDelete()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 详情场景
|
||
* @return SupervisionDangerousEngineeringCaseValidate
|
||
* @author likeadmin
|
||
* @date 2024/03/04 14:00
|
||
*/
|
||
public function sceneDetail()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
public function checkData($value): bool|string
|
||
{
|
||
$data = SupervisionDangerousEngineeringCase::where('id',$value)->findOrEmpty();
|
||
if($data->isEmpty()){
|
||
return '数据不存在';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkDangerousEngineeringMonitoring($value): bool|string
|
||
{
|
||
$data = SupervisionDangerousEngineeringMonitoring::where('id',$value)->findOrEmpty();
|
||
if($data->isEmpty()){
|
||
return '危大工程监控信息不存在';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkAnnex($value): bool|string
|
||
{
|
||
if(!empty($value) && $value != '' && !is_array($value)){
|
||
return '附件格式错误';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
} |