engineering/app/adminapi/validate/project/ProjectProfitSetValidate.php

124 lines
3.0 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\ProjectProfitSet;
use app\common\model\project\ProjectTypeSet;
use app\common\validate\BaseValidate;
/**
* 项目利润设置验证器
* Class ProjectProfitSetValidate
* @package app\adminapi\validate\project
*/
class ProjectProfitSetValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => 'require|checkData',
'project_type_id' => 'require|checkProjectType',
'profit_rate' => 'require|float|egt:0',
];
protected $message = [
'id.require' => '缺少必要参数',
'project_type_id.require' => '请选择项目类型',
'profit_rate.require' => '请填写最低利润率',
'profit_rate.float' => '最低利润率必须是数字',
'profit_rate.egt' => '最低利润率必须大于等于0',
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
'id' => 'id',
'project_type_id' => '项目类型id',
'profit_rate' => '最低利润率',
];
/**
* @notes 添加场景
* @return ProjectProfitSetValidate
* @author likeadmin
* @date 2023/12/14 15:39
*/
public function sceneAdd()
{
return $this->remove('id',true);
}
/**
* @notes 编辑场景
* @return ProjectProfitSetValidate
* @author likeadmin
* @date 2023/12/14 15:39
*/
public function sceneEdit()
{}
/**
* @notes 删除场景
* @return ProjectProfitSetValidate
* @author likeadmin
* @date 2023/12/14 15:39
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return ProjectProfitSetValidate
* @author likeadmin
* @date 2023/12/14 15:39
*/
public function sceneDetail()
{
return $this->only(['id']);
}
public function checkData($value): bool|string
{
$data = ProjectProfitSet::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;
}
}