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\SupervisionNotice;
|
||
use app\common\model\supervision_work\SupervisionNoticeProblem;
|
||
use app\common\validate\BaseValidate;
|
||
|
||
|
||
/**
|
||
* 工程监理--监理通知问题验证器
|
||
* Class SupervisionNoticeProblemValidate
|
||
* @package app\adminapi\validate\supervision_work
|
||
*/
|
||
class SupervisionNoticeProblemValidate extends BaseValidate
|
||
{
|
||
|
||
/**
|
||
* 设置校验规则
|
||
* @var string[]
|
||
*/
|
||
protected $rule = [
|
||
'id' => 'require|checkData',
|
||
'notice_id' => 'require|checkNotice',
|
||
'problem_description' => 'require',
|
||
'content_description' => 'require',
|
||
'demand_description' => 'require',
|
||
];
|
||
|
||
|
||
/**
|
||
* 参数描述
|
||
* @var string[]
|
||
*/
|
||
protected $field = [
|
||
'id' => 'id',
|
||
'notice_id' => '通知id',
|
||
'problem_description' => '事由描述',
|
||
'content_description' => '内容描述',
|
||
'demand_description' => '要求描述',
|
||
];
|
||
|
||
|
||
/**
|
||
* @notes 添加场景
|
||
* @return SupervisionNoticeProblemValidate
|
||
* @author likeadmin
|
||
* @date 2024/03/01 09:20
|
||
*/
|
||
public function sceneAdd()
|
||
{
|
||
return $this->only(['notice_id','problem_description','content_description','demand_description']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 编辑场景
|
||
* @return SupervisionNoticeProblemValidate
|
||
* @author likeadmin
|
||
* @date 2024/03/01 09:20
|
||
*/
|
||
public function sceneEdit()
|
||
{
|
||
return $this->only(['id','notice_id','problem_description','content_description','demand_description']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 删除场景
|
||
* @return SupervisionNoticeProblemValidate
|
||
* @author likeadmin
|
||
* @date 2024/03/01 09:20
|
||
*/
|
||
public function sceneDelete()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 详情场景
|
||
* @return SupervisionNoticeProblemValidate
|
||
* @author likeadmin
|
||
* @date 2024/03/01 09:20
|
||
*/
|
||
public function sceneDetail()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
public function checkData($value): bool|string
|
||
{
|
||
$data = SupervisionNoticeProblem::where('id',$value)->findOrEmpty();
|
||
if($data->isEmpty()){
|
||
return '数据不存在';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkNotice($value): bool|string
|
||
{
|
||
$data = SupervisionNotice::where('id',$value)->findOrEmpty();
|
||
if($data->isEmpty()){
|
||
return '监理通知单信息不存在';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
} |