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_project\SupervisionProject;
|
||
use app\common\model\supervision_work\SupervisionMaterialEquipmentInfo;
|
||
use app\common\validate\BaseValidate;
|
||
|
||
|
||
/**
|
||
* 工程监理--材料设备信息验证器
|
||
* Class SupervisionMaterialEquipmentInfoValidate
|
||
* @package app\adminapi\validate\supervision_work
|
||
*/
|
||
class SupervisionMaterialEquipmentInfoValidate extends BaseValidate
|
||
{
|
||
|
||
/**
|
||
* 设置校验规则
|
||
* @var string[]
|
||
*/
|
||
protected $rule = [
|
||
'id' => 'require|checkData',
|
||
'project_id' => 'require|checkProject',
|
||
'name' => 'require',
|
||
'number' => 'integer',
|
||
'contract_brand' => 'require|in:0,1',
|
||
'type' => 'require|in:0,1',
|
||
];
|
||
|
||
|
||
/**
|
||
* 参数描述
|
||
* @var string[]
|
||
*/
|
||
protected $field = [
|
||
'id' => 'id',
|
||
'project_id' => '项目id',
|
||
'name' => '材料/设备名称',
|
||
'brand' => '材料/设备品牌',
|
||
'model' => '型号',
|
||
'unit' => '计数单位',
|
||
'number' => '计划数量',
|
||
'contract_brand' => '合同约定品牌 0-否 1-是',
|
||
'type' => '类型 0-材料 1-设备',
|
||
'remark' => '备注',
|
||
];
|
||
|
||
|
||
/**
|
||
* @notes 添加场景
|
||
* @return SupervisionMaterialEquipmentInfoValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/27 16:28
|
||
*/
|
||
public function sceneAdd()
|
||
{
|
||
return $this->remove('id',true);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 编辑场景
|
||
* @return SupervisionMaterialEquipmentInfoValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/27 16:28
|
||
*/
|
||
public function sceneEdit()
|
||
{}
|
||
|
||
|
||
/**
|
||
* @notes 删除场景
|
||
* @return SupervisionMaterialEquipmentInfoValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/27 16:28
|
||
*/
|
||
public function sceneDelete()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 详情场景
|
||
* @return SupervisionMaterialEquipmentInfoValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/27 16:28
|
||
*/
|
||
public function sceneDetail()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
public function checkData($value): bool|string
|
||
{
|
||
$data = SupervisionMaterialEquipmentInfo::where('id',$value)->findOrEmpty();
|
||
if($data->isEmpty()){
|
||
return '数据不存在';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkProject($value): bool|string
|
||
{
|
||
$data = SupervisionProject::where('id',$value)->findOrEmpty();
|
||
if($data->isEmpty()){
|
||
return '项目信息不存在';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
} |