126 lines
3.3 KiB
PHP
126 lines
3.3 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\SupervisionAccept;
|
||
use app\common\model\supervision_work\SupervisionAcceptResult;
|
||
use app\common\validate\BaseValidate;
|
||
|
||
|
||
/**
|
||
* 工程监理--验收结果验证器
|
||
* Class SupervisionAcceptResultValidate
|
||
* @package app\adminapi\validate\supervision_work
|
||
*/
|
||
class SupervisionAcceptResultValidate extends BaseValidate
|
||
{
|
||
|
||
/**
|
||
* 设置校验规则
|
||
* @var string[]
|
||
*/
|
||
protected $rule = [
|
||
'id' => 'require|checkData',
|
||
'accept_id' => 'require|checkAccept',
|
||
'check_type' => 'require',
|
||
'check_content' => 'require',
|
||
'check_problem' => 'require',
|
||
'must_check' => 'require|in:0,1',
|
||
'check_result' => 'require|in:0,1',
|
||
];
|
||
|
||
|
||
/**
|
||
* 参数描述
|
||
* @var string[]
|
||
*/
|
||
protected $field = [
|
||
'id' => 'id',
|
||
'accept_id' => '验收id',
|
||
'check_type' => '检查类别',
|
||
'check_content' => '检查内容',
|
||
'check_problem' => '检查问题',
|
||
'must_check' => '是否必检',
|
||
'check_result' => '检查结果',
|
||
];
|
||
|
||
|
||
/**
|
||
* @notes 添加场景
|
||
* @return SupervisionAcceptResultValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/27 15:23
|
||
*/
|
||
public function sceneAdd()
|
||
{
|
||
return $this->only(['accept_id','check_type','check_content','must_check','check_result']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 编辑场景
|
||
* @return SupervisionAcceptResultValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/27 15:23
|
||
*/
|
||
public function sceneEdit()
|
||
{
|
||
return $this->only(['id','accept_id','check_type','check_content','must_check','check_result']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 删除场景
|
||
* @return SupervisionAcceptResultValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/27 15:23
|
||
*/
|
||
public function sceneDelete()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 详情场景
|
||
* @return SupervisionAcceptResultValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/27 15:23
|
||
*/
|
||
public function sceneDetail()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
public function checkData($value): bool|string
|
||
{
|
||
$data = SupervisionAcceptResult::where('id',$value)->findOrEmpty();
|
||
if($data->isEmpty()){
|
||
return '数据不存在';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkAccept($value): bool|string
|
||
{
|
||
$data = SupervisionAccept::where('id',$value)->findOrEmpty();
|
||
if($data->isEmpty()){
|
||
return '验收信息不存在';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
} |