122 lines
3.2 KiB
PHP
122 lines
3.2 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\SupervisionInspection;
|
||
use app\common\model\supervision_work\SupervisionInspectionProblem;
|
||
use app\common\validate\BaseValidate;
|
||
|
||
|
||
/**
|
||
* 工程监理--巡视问题验证器
|
||
* Class SupervisionInspectionProblemValidate
|
||
* @package app\adminapi\validate\supervision_work
|
||
*/
|
||
class SupervisionInspectionProblemValidate extends BaseValidate
|
||
{
|
||
|
||
/**
|
||
* 设置校验规则
|
||
* @var string[]
|
||
*/
|
||
protected $rule = [
|
||
'id' => 'require|checkData',
|
||
'inspection_id' => 'require|checkInspection',
|
||
'problem_cate' => 'require',
|
||
'problem_description' => 'require',
|
||
'problem_name' => 'require',
|
||
];
|
||
|
||
|
||
/**
|
||
* 参数描述
|
||
* @var string[]
|
||
*/
|
||
protected $field = [
|
||
'id' => 'id',
|
||
'inspection_id' => '巡视id',
|
||
'problem_cate' => '问题分类',
|
||
'problem_description' => '问题说明',
|
||
'problem_name' => '问题名称',
|
||
];
|
||
|
||
|
||
/**
|
||
* @notes 添加场景
|
||
* @return SupervisionInspectionProblemValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/26 17:18
|
||
*/
|
||
public function sceneAdd()
|
||
{
|
||
return $this->only(['inspection_id','problem_cate','problem_description','problem_name']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 编辑场景
|
||
* @return SupervisionInspectionProblemValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/26 17:18
|
||
*/
|
||
public function sceneEdit()
|
||
{
|
||
return $this->only(['id','inspection_id','problem_cate','problem_description','problem_name']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 删除场景
|
||
* @return SupervisionInspectionProblemValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/26 17:18
|
||
*/
|
||
public function sceneDelete()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 详情场景
|
||
* @return SupervisionInspectionProblemValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/26 17:18
|
||
*/
|
||
public function sceneDetail()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
public function checkData($value): bool|string
|
||
{
|
||
$data = SupervisionInspectionProblem::where('id',$value)->findOrEmpty();
|
||
if($data->isEmpty()){
|
||
return '数据不存在';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkInspection($value): bool|string
|
||
{
|
||
$data = SupervisionInspection::where('id',$value)->findOrEmpty();
|
||
if($data->isEmpty()){
|
||
return '巡视信息不存在';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
} |