erp/app/admin/validate/goods/GoodsLabelValidate.php
2024-04-27 11:41:34 +08:00

82 lines
1.3 KiB
PHP

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