You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
487 B
23 lines
487 B
<?php
|
|
|
|
namespace app\admin\validate\shopro\goods;
|
|
|
|
use think\Validate;
|
|
|
|
class StockWarning extends Validate
|
|
{
|
|
protected $rule = [
|
|
'stock' => 'require|integer|gt:0',
|
|
];
|
|
|
|
protected $message = [
|
|
'stock.require' => '请填写补货数量',
|
|
'stock.integer' => '请填写补货数量',
|
|
'stock.gt' => '请填写正确的补货数量'
|
|
];
|
|
|
|
|
|
protected $scene = [
|
|
'add_stock' => ['stock']
|
|
];
|
|
}
|
|
|