StockWarning.php 464 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace app\admin\validate\shopro\goods;
  3. use think\Validate;
  4. class StockWarning extends Validate
  5. {
  6. protected $rule = [
  7. 'stock' => 'require|integer|gt:0',
  8. ];
  9. protected $message = [
  10. 'stock.require' => '请填写补货数量',
  11. 'stock.integer' => '请填写补货数量',
  12. 'stock.gt' => '请填写正确的补货数量'
  13. ];
  14. protected $scene = [
  15. 'add_stock' => ['stock']
  16. ];
  17. }