111 lines
2.7 KiB
PHP
111 lines
2.7 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\project;
|
||
|
||
|
||
use app\common\validate\BaseValidate;
|
||
|
||
|
||
/**
|
||
* Project验证器
|
||
* Class ProjectValidate
|
||
* @package app\adminapi\validate\project
|
||
*/
|
||
class ProjectValidate extends BaseValidate
|
||
{
|
||
|
||
/**
|
||
* 设置校验规则
|
||
* @var string[]
|
||
*/
|
||
protected $rule = [
|
||
'id' => 'require',
|
||
'custom_id' => 'require|integer',
|
||
'project_type' => 'require|integer',
|
||
'name' => 'require',
|
||
'discovery_time' => 'require',
|
||
'information_sources' => 'require|integer'
|
||
];
|
||
|
||
protected $message = [
|
||
'id.require' => '缺少数据主键',
|
||
'custom_id.require' => '请选择客户',
|
||
'custom_id.integer' => '客户数据格式错误',
|
||
'project_type.require' => '请选择工程类型',
|
||
'project_type.integer' => '工程类型据格式错误',
|
||
'name.require' => '请填写工程名称',
|
||
'discovery_time.require' => '请选择发现时间',
|
||
'information_sources.require' => '请选择信息来源',
|
||
'information_sources.integer' => '信息来源据格式错误',
|
||
];
|
||
|
||
|
||
/**
|
||
* 参数描述
|
||
* @var string[]
|
||
*/
|
||
protected $field = [
|
||
'id' => 'id',
|
||
];
|
||
|
||
|
||
/**
|
||
* @notes 添加场景
|
||
* @return ProjectValidate
|
||
* @author likeadmin
|
||
* @date 2023/11/12 14:30
|
||
*/
|
||
public function sceneAdd()
|
||
{
|
||
return $this->remove('id', true);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 编辑场景
|
||
* @return ProjectValidate
|
||
* @author likeadmin
|
||
* @date 2023/11/12 14:30
|
||
*/
|
||
public function sceneEdit()
|
||
{
|
||
return $this->append(['id']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 删除场景
|
||
* @return ProjectValidate
|
||
* @author likeadmin
|
||
* @date 2023/11/12 14:30
|
||
*/
|
||
public function sceneDelete()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 详情场景
|
||
* @return ProjectValidate
|
||
* @author likeadmin
|
||
* @date 2023/11/12 14:30
|
||
*/
|
||
public function sceneDetail()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
} |