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