lihaiMiddleOffice/app/psi/validate/StoreProductPriceValidate.php
2025-04-03 16:25:57 +08:00

82 lines
1.4 KiB
PHP

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