123 lines
3.1 KiB
PHP
123 lines
3.1 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_project;
|
||
|
||
|
||
use app\common\model\supervision_project\SupervisionParticipatingUnits;
|
||
use app\common\model\supervision_project\SupervisionParticipatingUnitsContacts;
|
||
use app\common\validate\BaseValidate;
|
||
|
||
|
||
/**
|
||
* 工程监理--参建单位联系人验证器
|
||
* Class SupervisionParticipatingUnitsContactsValidate
|
||
* @package app\adminapi\validate\supervision_project
|
||
*/
|
||
class SupervisionParticipatingUnitsContactsValidate extends BaseValidate
|
||
{
|
||
|
||
/**
|
||
* 设置校验规则
|
||
* @var string[]
|
||
*/
|
||
protected $rule = [
|
||
'id' => 'require|checkData',
|
||
'unit_id' => 'require|checkUnit',
|
||
'name' => 'require',
|
||
'mobile' => 'mobile',
|
||
'email' => 'email',
|
||
];
|
||
|
||
|
||
/**
|
||
* 参数描述
|
||
* @var string[]
|
||
*/
|
||
protected $field = [
|
||
'id' => 'id',
|
||
'unit_id' => '单位id',
|
||
'name' => '姓名',
|
||
'duties' => '职务',
|
||
'telephone' => '办公电话',
|
||
'mobile' => '手机号码',
|
||
'email' => '电子邮箱',
|
||
'fax' => '传真',
|
||
];
|
||
|
||
|
||
/**
|
||
* @notes 添加场景
|
||
* @return SupervisionParticipatingUnitsContactsValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/23 13:40
|
||
*/
|
||
public function sceneAdd()
|
||
{
|
||
return $this->remove('id',true);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 编辑场景
|
||
* @return SupervisionParticipatingUnitsContactsValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/23 13:40
|
||
*/
|
||
public function sceneEdit()
|
||
{}
|
||
|
||
|
||
/**
|
||
* @notes 删除场景
|
||
* @return SupervisionParticipatingUnitsContactsValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/23 13:40
|
||
*/
|
||
public function sceneDelete()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 详情场景
|
||
* @return SupervisionParticipatingUnitsContactsValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/23 13:40
|
||
*/
|
||
public function sceneDetail()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
public function checkData($value): bool|string
|
||
{
|
||
$data = SupervisionParticipatingUnitsContacts::where('id',$value)->findOrEmpty();
|
||
if($data->isEmpty()){
|
||
return '数据不存在';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkUnit($value): bool|string
|
||
{
|
||
$data = SupervisionParticipatingUnits::where('id',$value)->findOrEmpty();
|
||
if($data->isEmpty()){
|
||
return '参建单位信息不存在';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
} |