multi-store/app/admin/validate/PurchaseFundsValidate.php
2025-03-20 14:16:00 +08:00

82 lines
1.4 KiB
PHP

<?php
namespace app\admin\validate;
use app\common\validate\BaseValidate;
/**
* PurchaseFunds验证器
* Class PurchaseFundsValidate
* @package app\admin\validate
*/
class PurchaseFundsValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => 'require',
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
'id' => 'id',
];
/**
* @notes 添加场景
* @return PurchaseFundsValidate
* @author admin
* @date 2025/03/19 14:59
*/
public function sceneAdd()
{
return $this->remove('id', true);
}
/**
* @notes 编辑场景
* @return PurchaseFundsValidate
* @author admin
* @date 2025/03/19 14:59
*/
public function sceneEdit()
{
return $this->only(['id']);
}
/**
* @notes 删除场景
* @return PurchaseFundsValidate
* @author admin
* @date 2025/03/19 14:59
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return PurchaseFundsValidate
* @author admin
* @date 2025/03/19 14:59
*/
public function sceneDetail()
{
return $this->only(['id']);
}
}