engineering/app/adminapi/validate/project/ProjectDocumentSetValidate.php
2023-12-14 15:29:34 +08:00

137 lines
3.5 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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\project;
use app\common\model\project\ProjectDocumentSet;
use app\common\model\project\ProjectTypeSet;
use app\common\validate\BaseValidate;
/**
* 项目文档设置验证器
* Class ProjectDocumentSetValidate
* @package app\adminapi\validate\project
*/
class ProjectDocumentSetValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => 'require|checkProjectDoc',
'project_type_id' => 'require|checkProjectType',
'large_category' => 'require',
'middle_category' => 'require',
'name' => 'require',
'is_upload' => 'require|in:1,2',
'sort' => 'require|integer',
];
protected $message = [
'id.require' => '缺少必要参数',
'project_type_id.require' => '请选择项目类型',
'large_category.require' => '请填写文档大类',
'middle_category.require' => '请填写文档中类',
'name.require' => '请填写文档名称',
'is_upload.require' => '请选择是否必传',
'is_upload.in' => '是否必传选项数据值错误',
'sort.require' => '请填写排序码',
'sort.integer' => '排序码数据格式错误',
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
'id' => 'id',
'project_type_id' => '项目类型id',
'large_category' => '文档大类',
'middle_category' => '文档中类',
'name' => '文档名称',
'is_upload' => '必传 1-是 2-否',
'sort' => '排序号',
];
/**
* @notes 添加场景
* @return ProjectDocumentSetValidate
* @author likeadmin
* @date 2023/12/14 14:26
*/
public function sceneAdd()
{
return $this->remove('id',true);
}
/**
* @notes 编辑场景
* @return ProjectDocumentSetValidate
* @author likeadmin
* @date 2023/12/14 14:26
*/
public function sceneEdit()
{}
/**
* @notes 删除场景
* @return ProjectDocumentSetValidate
* @author likeadmin
* @date 2023/12/14 14:26
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return ProjectDocumentSetValidate
* @author likeadmin
* @date 2023/12/14 14:26
*/
public function sceneDetail()
{
return $this->only(['id']);
}
public function checkProjectDoc($value): bool|string
{
$data = ProjectDocumentSet::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '数据不存在';
}
return true;
}
public function checkProjectType($value): bool|string
{
$data = ProjectTypeSet::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '项目类型不存在';
}
return true;
}
}