init
- 框架初始化 - 安装插件 - 修复PHP8.4报错
This commit is contained in:
23
application/admin/validate/shopro/goods/StockWarning.php
Normal file
23
application/admin/validate/shopro/goods/StockWarning.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?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']
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user